Files
deb-python-cassandra-driver/cqlengine/exceptions.py
timmartin19 2ba9a99dca Added documentation. Changed .transaction() to .iff(), removed
TransactionException and replaced with LWTException
2014-10-20 11:05:34 -04: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