added main files

This commit is contained in:
2024-04-05 00:38:00 +07:00
commit ba6c68db7f
10 changed files with 708 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
class ApiException(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)
class NoAuthData(ApiException):
pass
class ApiError(ApiException):
pass