experimental-accounting-api/accounting/exceptions.py

11 lines
283 B
Python
Raw Normal View History

# Part of accounting-api project:
# https://gitorious.org/conservancy/accounting-api
# License: AGPLv3-or-later
2013-12-10 23:25:16 +00:00
class AccountingException(Exception):
'''
Used as a base for exceptions that are returned to the caller via the
jsonify_exceptions decorator
'''
pass