Files
mayan-edms/mayan/apps/rest_api/exceptions.py
2018-04-01 18:28:40 -04:00

17 lines
285 B
Python

from __future__ import unicode_literals
class APIError(Exception):
"""
Base exception for the API app
"""
pass
class APIResourcePatternError(APIError):
"""
Raised when an app tries to override an existing URL regular expression
pattern
"""
pass