mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
8 lines
140 B
Python
8 lines
140 B
Python
|
class CraftyException(Exception):
|
||
|
pass
|
||
|
|
||
|
class DatabaseException(CraftyException):
|
||
|
pass
|
||
|
|
||
|
class SchemaError(DatabaseException):
|
||
|
pass
|