Files
deb-python-cassandra-driver/cqlengine/exceptions.py
2014-07-07 14:19:28 -07:00

7 lines
219 B
Python

#cqlengine exceptions
class CQLEngineException(Exception): pass
class ModelException(CQLEngineException): pass
class ValidationError(CQLEngineException): pass
class UndefinedKeyspaceException(CQLEngineException): pass