915b34391c
* chore: Added isort to pre-commit config * chore: Sort imports with isort * chore: Clean up imports with pycln * chore: Sort imports with isort * chore: Fix import issues * chore: Clean up sider issues * chore: Remove import errors from flake8 ignore list * chore: Clean up lint issues
13 lines
408 B
Python
13 lines
408 B
Python
from __future__ import unicode_literals
|
|
|
|
import frappe
|
|
|
|
|
|
# accounts
|
|
class PartyFrozen(frappe.ValidationError): pass
|
|
class InvalidAccountCurrency(frappe.ValidationError): pass
|
|
class InvalidCurrency(frappe.ValidationError): pass
|
|
class PartyDisabled(frappe.ValidationError):pass
|
|
class InvalidAccountDimensionError(frappe.ValidationError): pass
|
|
class MandatoryAccountDimensionError(frappe.ValidationError): pass
|