mirror of
https://github.com/OCA/server-backend.git
synced 2025-02-18 09:52:42 +02:00
* Heavily refactor code for reusability * Split all sources into independent modules * Add more test coverage * Add CRUD methods * Add iterator execute return to roadmap OCA Transbot updated translations from Transifex
14 lines
260 B
Python
14 lines
260 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2016 LasLabs Inc.
|
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
|
|
|
from odoo.exceptions import UserError
|
|
|
|
|
|
class ConnectionFailedError(UserError):
|
|
pass
|
|
|
|
|
|
class ConnectionSuccessError(UserError):
|
|
pass
|