1@Provider
2public class PersistenceMapper implements ExceptionMapper<PersistenceException> {
3
4 @Override
5 public Response toResponse(PersistenceException arg0) {
6 if(arg0.getCause() instanceof InvalidDataException) {
7 return Response.status(Response.Status.BAD_REQUEST).build();
8 } else {
9 ...
10 }
11 }
12
13}
14