|
|
@ -105,9 +105,7 @@ public class GlobalThrowableMapper implements ExceptionMapper {
|
|
|
|
return ((ForbiddenException) e).getResponse();
|
|
|
|
return ((ForbiddenException) e).getResponse();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//unknown exception log and return
|
|
|
|
//unknown exception log and return
|
|
|
|
if (log.isDebugEnabled()) {
|
|
|
|
|
|
|
|
log.error("An Unknown exception has been captured by global exception mapper.", e);
|
|
|
|
log.error("An Unknown exception has been captured by global exception mapper.", e);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Response.status(Response.Status.INTERNAL_SERVER_ERROR).header("Content-Type", "application/json")
|
|
|
|
return Response.status(Response.Status.INTERNAL_SERVER_ERROR).header("Content-Type", "application/json")
|
|
|
|
.entity(e500).build();
|
|
|
|
.entity(e500).build();
|
|
|
|
}
|
|
|
|
}
|
|
|
|