mirror of
https://github.com/OCA/server-backend.git
synced 2025-02-18 09:52:42 +02:00
13 lines
236 B
Python
13 lines
236 B
Python
# 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
|