mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-26 08:24:47 +00:00
8 lines
225 B
Python
8 lines
225 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
|