例外マッパーで実際の例外クラスではなく、常に 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();
}
}
これがすでに回答されているかどうかはわかりませんが、何も見つかりませんでした。どんな助けでも大歓迎です。