mirror of
https://github.com/titanscouting/tra-superscript.git
synced 2024-11-10 06:54:45 +00:00
5 lines
126 B
Python
5 lines
126 B
Python
|
class APIError(Exception):
|
||
|
code = None
|
||
|
def __init__(self, str, endpoint):
|
||
|
super().__init__(str)
|
||
|
self.endpoint = endpoint
|