Improved error message

This commit is contained in:
Luca Frosini 2020-12-01 15:39:06 +01:00
parent 8cd17acfe9
commit 2f5b23addf
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ public class PortalUser {
oAuthUserProfile = objectMapper.readTree(ret);
} catch(Exception e) {
throw new InternalServerErrorException(e);
throw new InternalServerErrorException("Unable to retrive Infrastructure User Information from Social Service", e);
}
}
return oAuthUserProfile;