Interface ResponseErrorMapper


  • @Contract
    @ConstrainedTo(SERVER)
    public interface ResponseErrorMapper
    Contract for a provider that maps response processing errors to Response.

    Providers implementing ResponseErrorMapper contract must be either programmatically registered in a JAX-RS runtime or must be annotated with @Provider annotation to be automatically discovered by the JAX-RS runtime during a provider scanning phase.

    ServerProperties.PROCESSING_RESPONSE_ERRORS_ENABLED property has to be enabled in order to use this contract.

    Since:
    2.8
    See Also:
    Provider, Response
    • Method Detail

      • toResponse

        javax.ws.rs.core.Response toResponse​(java.lang.Throwable throwable)