This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
mandaye/mandaye/exceptions.py

12 lines
227 B
Python

"""
Global Mandaye exception and warning classes.
"""
class ImproperlyConfigured(Exception):
"Mandaye is somehow improperly configured"
pass
class MandayeException(Exception):
"Mandaye generic exception"
pass