mirror of
https://github.com/titanscouting/tra-superscript.git
synced 2025-09-26 07:10:18 +00:00
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) |