6 lines
164 B
Python
6 lines
164 B
Python
#cqlengine exceptions
|
|
class CQLEngineException(BaseException): pass
|
|
class ModelException(CQLEngineException): pass
|
|
class ValidationError(CQLEngineException): pass
|
|
|