Files
chydo aac0458437 fixed: error with data
moved: api to init
updated: version up to 0.0.2
2024-04-05 01:50:12 +07:00

15 lines
233 B
Python

class ApiException(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)
class NoAuthData(ApiException):
pass
class RequestError(ApiException):
pass