Files
deb-python-sqlalchemy-utils/sqlalchemy_utils/exceptions.py
Ryan Leckey ea80b98bbf Add an ImproperlyConfigured exception.
- To be used to signal when a type is being used without a
   required library.
2013-07-10 01:03:01 -07:00

9 lines
227 B
Python

"""Global SQLAlchemy-Utils exception classes.
"""
class ImproperlyConfigured(Exception):
"""
SQLAlchemy-Utils is improperly configured; normally due to usage of
a utility that depends on a missing library.
"""