Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @Provider
- public class AppExceptionMapper implements ExceptionMapper<AppException> {
- @Override
- public Response toResponse(AppException exception) {
- return Response.status(403)
- .entity("toResponse entity").type("text/plain").build();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement