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