mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2026-08-19 20:23:07 -04:00
10 lines
155 B
Python
10 lines
155 B
Python
class CraftyException(Exception):
|
|
pass
|
|
|
|
|
|
class DatabaseException(CraftyException):
|
|
pass
|
|
|
|
|
|
class SchemaError(DatabaseException):
|
|
pass
|