mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2025-07-26 11:37:11 +00:00
11 lines
155 B
Python
11 lines
155 B
Python
class CraftyException(Exception):
|
|
pass
|
|
|
|
|
|
class DatabaseException(CraftyException):
|
|
pass
|
|
|
|
|
|
class SchemaError(DatabaseException):
|
|
pass
|