mirror of
https://github.com/spicetools/spicetools.git
synced 2026-03-22 10:24:27 -05:00
11 lines
173 B
Python
11 lines
173 B
Python
|
|
|
|
class APIError(Exception):
|
|
|
|
def __init__(self, errors):
|
|
super().__init__("\r\n".join(errors))
|
|
|
|
|
|
class MalformedRequestException(Exception):
|
|
pass
|