mirror of
https://github.com/gogcom/galaxy-integrations-python-api.git
synced 2026-01-20 04:38:24 -05:00
SDK-2577: Add UnknownBackendResponse
This commit is contained in:
committed by
Rafal Makagon
parent
d6e6efc633
commit
e244d3bb44
@@ -20,6 +20,10 @@ class BackendError(ApplicationError):
|
||||
def __init__(self, data=None):
|
||||
super().__init__(4, "Backend error", data)
|
||||
|
||||
class UnknownBackendResponse(ApplicationError):
|
||||
def __init__(self, data=None):
|
||||
super().__init__(4, "Backend responded in uknown way", data)
|
||||
|
||||
class InvalidCredentials(ApplicationError):
|
||||
def __init__(self, data=None):
|
||||
super().__init__(100, "Invalid credentials", data)
|
||||
|
||||
Reference in New Issue
Block a user