mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2025-02-07 15:49:04 +01:00
9 lines
151 B
Python
9 lines
151 B
Python
class CraftyException(Exception):
|
|
pass
|
|
|
|
class DatabaseException(CraftyException):
|
|
pass
|
|
|
|
class SchemaError(DatabaseException):
|
|
pass
|