Closed Inventitech closed 6 years ago
Is this Eclipse or IntelliJ or both?
Oh it is actually easy. We have to update the following snippet to catch Exception instead:
try {
userId = new JsonTransferer().registerNewUser(user);
} catch (ServerCommunicationException exception) {
this.createFailureMessage(USER_CREATION_MESSAGE_FAILURE, exception);
return false;
}
Okay, it is not that easy sadly. It seems we are already catching this exception appropriately down in the JsonTransferer
Trying to register a new user, when this is not successful, the UI does not change at all.