Advertisement
TyLeRRR

Untitled

Aug 19th, 2016
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. @Provider
  2. public class AppExceptionMapper implements ExceptionMapper<AppException> {
  3.  
  4.     @Override
  5.     public Response toResponse(AppException exception) {
  6.         return Response.status(403)
  7.                 .entity("toResponse entity").type("text/plain").build();
  8.     }
  9.    
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement