mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-17 08:35:00 +00:00
8 lines
228 B
Python
8 lines
228 B
Python
from __future__ import unicode_literals
|
|
import frappe
|
|
|
|
# accounts
|
|
class CustomerFrozen(frappe.ValidationError): pass
|
|
class InvalidAccountCurrency(frappe.ValidationError): pass
|
|
class InvalidCurrency(frappe.ValidationError): pass
|