mirror of
https://github.com/titanscouting/tra-superscript.git
synced 2024-11-09 22:44:44 +00:00
8c28c24d60
moved important files to folder "competition" Former-commit-id: 59becb22abc3305a36e2876351e6c7306e3f551e
7 lines
165 B
Python
7 lines
165 B
Python
class APIError(Exception):
|
|
def __init__(self, str):
|
|
super().__init__(str)
|
|
|
|
class ConfigurationError (Exception):
|
|
def __init__(self, str):
|
|
super().__init__(str) |