This commit is contained in:
Lucio Lelii 2022-06-15 17:50:51 +02:00
parent 245461b7ee
commit f6639bda23
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public class DefaultUserManager extends DefaultManagerClient implements UserMana
else if (response.getHTTPCode()==403)
throw new UserNotAuthorizedException("the call to this method is not allowed for the user");
else
throw new BackendGenericError();
throw new BackendGenericError("error is "+response.getHTTPCode());
}