oc_template/modules/account_co_co/exceptions.py

14 lines
334 B
Python
Raw Normal View History

2024-06-15 11:00:00 -05:00
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from trytond.exceptions import UserError
from trytond.model.exceptions import ValidationError
class PartyIdentifierError(ValidationError):
pass
class PostError(UserError):
pass