11 lines
164 B
Python
11 lines
164 B
Python
class DatabaseFetchError(Exception):
|
|
pass
|
|
|
|
|
|
class DatabaseFileNotFoundError(DatabaseFetchError):
|
|
pass
|
|
|
|
|
|
class InvalidKeyError(DatabaseFetchError):
|
|
pass
|