为什么我总是得到 javax.ws.rs.WebApplicationException 而不是我的异常映射器中的实际异常类:
@Provider
public class PaymentExceptionHandler implements ExceptionMapper<Exception> {
/*
* Maps the Exception object to response Object when any exception is thrown
* within the application.
*/
@Override
public Response toResponse(Exception exception) {
return Response.status(550)
.entity(exception)
.build();
}
}
我不确定这是否已经回答,我找不到任何答案。任何帮助,将不胜感激。