|
@@ -114,6 +114,10 @@ class NoSuchAccountError(ResponseError):
|
|
pass
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
+class GroupPatchNotAcceptedError(ResponseError):
|
|
|
|
+ pass
|
|
|
|
+
|
|
|
|
+
|
|
response_error_types = {
|
|
response_error_types = {
|
|
"invalid_request": RequestValidationFailure,
|
|
"invalid_request": RequestValidationFailure,
|
|
"TimeoutException": TimeoutException,
|
|
"TimeoutException": TimeoutException,
|
|
@@ -129,6 +133,7 @@ response_error_types = {
|
|
"UnregisteredUserError": UnregisteredUserError,
|
|
"UnregisteredUserError": UnregisteredUserError,
|
|
"ProfileUnavailableError": ProfileUnavailableError,
|
|
"ProfileUnavailableError": ProfileUnavailableError,
|
|
"NoSuchAccountError": NoSuchAccountError,
|
|
"NoSuchAccountError": NoSuchAccountError,
|
|
|
|
+ "GroupPatchNotAcceptedError": GroupPatchNotAcceptedError,
|
|
# TODO add rest from https://gitlab.com/signald/signald/-/tree/main/src/main/java/io/finn/signald/clientprotocol/v1/exceptions
|
|
# TODO add rest from https://gitlab.com/signald/signald/-/tree/main/src/main/java/io/finn/signald/clientprotocol/v1/exceptions
|
|
}
|
|
}
|
|
|
|
|