tra-superscript/src/cli/exceptions.py

5 lines
126 B
Python
Raw Normal View History

class APIError(Exception):
code = None
def __init__(self, str, endpoint):
super().__init__(str)
self.endpoint = endpoint