Skip to content
Snippets Groups Projects
Commit 5865f966 authored by Kelly Zhou's avatar Kelly Zhou
Browse files

update the error reason to entitlement error

parent baeae8e4
No related branches found
No related tags found
1 merge request!38create app exceptions from original exceptions when doing user authentication
Pipeline #27021 failed
......@@ -62,13 +62,13 @@ public class AuthenticationRequestFilter extends OncePerRequestFilter {
} catch (EntitlementsException e) {
String message = String.format(String.format("User not authenticated. Response: %s", e.getHttpResponse()), e);
logger.warning(message);
AppException unauthorized = new AppException(e.getHttpResponse().getResponseCode(), "Error when authenticate", e.getMessage(), e);
AppException unauthorized = new AppException(e.getHttpResponse().getResponseCode(), "Entitlement Error", e.getMessage(), e);
handlerExceptionResolver.resolveException(httpServletRequest, httpServletResponse, null, unauthorized);
}
catch (NullPointerException e) { // Common library throws null pointer exception when auth permission is denied.
String message = String.format("User not authenticated. Null pointer exception: %s", e.getMessage());
logger.warning(message);
AppException unauthorized = new AppException(HttpStatus.SC_UNAUTHORIZED, "Error when authenticate", e.getMessage(), e);
AppException unauthorized = new AppException(HttpStatus.SC_UNAUTHORIZED, "Entitlement Error", e.getMessage(), e);
handlerExceptionResolver.resolveException(httpServletRequest, httpServletResponse, null, unauthorized);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment