exceptions.py 239 B

123456789
  1. # -*- coding: utf-8 -*-
  2. # © 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
  4. from openerp import exceptions
  5. class DetailsRequiredError(exceptions.ValidationError):
  6. pass