10 lines
239 B
Python
10 lines
239 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# © 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
|
||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||
|
|
||
|
from openerp import exceptions
|
||
|
|
||
|
|
||
|
class DetailsRequiredError(exceptions.ValidationError):
|
||
|
pass
|