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