Files
deb-python-cassandra-driver/cqlengine/exceptions.py
2014-09-08 18:19:20 +08:00

8 lines
264 B
Python

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