Uses of Class
com.tietoevry.quarkus.resteasy.problem.ExceptionMapperBase
-
-
Uses of ExceptionMapperBase in com.tietoevry.quarkus.resteasy.problem
Subclasses of ExceptionMapperBase in com.tietoevry.quarkus.resteasy.problem Modifier and Type Class Description classDefaultExceptionMapperDefault exception mapper processing all exceptions not matching any more specific mapper.classHttpProblemMapperclassZalandoProblemMapperMapper for ThrowableProblem exception from Zalando Problem library. -
Uses of ExceptionMapperBase in com.tietoevry.quarkus.resteasy.problem.jackson
Subclasses of ExceptionMapperBase in com.tietoevry.quarkus.resteasy.problem.jackson Modifier and Type Class Description classInvalidFormatExceptionMapperMapper for Jackson InvalidFormatException, which is more specialised version of JsonProcessingExceptionclassJsonProcessingExceptionMapperMapper for Jackson payload processing exceptions.classUnrecognizedPropertyExceptionMapperUnrecognizedPropertyException is thrown by Jackson, when request payload json does not fit DTO object with @Valid annotation (e.g field has different name) and FAIL_ON_UNKNOWN_PROPERTIES is enabled (default changed in quarkus 1.11) -
Uses of ExceptionMapperBase in com.tietoevry.quarkus.resteasy.problem.jaxrs
Subclasses of ExceptionMapperBase in com.tietoevry.quarkus.resteasy.problem.jaxrs Modifier and Type Class Description classJaxRsForbiddenExceptionMapperMapper overriding default Quarkus exception mapper to make all error responses compliant with RFC7807.classNotFoundExceptionMapperMapper overriding default Quarkus exception mapper to make all error responses compliant with RFC7807.classWebApplicationExceptionMapperGeneric exception mapper for JaxRS WebApplicationExceptions - it passes status and message to application/problem response. -
Uses of ExceptionMapperBase in com.tietoevry.quarkus.resteasy.problem.jsonb
Subclasses of ExceptionMapperBase in com.tietoevry.quarkus.resteasy.problem.jsonb Modifier and Type Class Description classJsonbExceptionMapperclassRestEasyClassicJsonbExceptionMapper -
Uses of ExceptionMapperBase in com.tietoevry.quarkus.resteasy.problem.security
Subclasses of ExceptionMapperBase in com.tietoevry.quarkus.resteasy.problem.security Modifier and Type Class Description classAuthenticationCompletionExceptionMapperMapper overriding default Quarkus exception mapper to make all error responses compliant with RFC7807.
From AuthenticationCompletionException javadocs on WWW-Authenticate header:classAuthenticationFailedExceptionMapperMapper overriding default Quarkus exception mapper to make all error responses compliant with RFC7807.classAuthenticationRedirectExceptionMapperMapper overriding default Quarkus exception mapper to make all error responses compliant with RFC7807.classForbiddenExceptionMapperMapper overriding default Quarkus exception mapper to make all error responses compliant with RFC7807.classUnauthorizedExceptionMapperMapper overriding default Quarkus exception mapper to make all error responses compliant with RFC7807. -
Uses of ExceptionMapperBase in com.tietoevry.quarkus.resteasy.problem.validation
Subclasses of ExceptionMapperBase in com.tietoevry.quarkus.resteasy.problem.validation Modifier and Type Class Description classConstraintViolationExceptionMapperException Mapper for ConstraintViolationException from Bean Validation API.classValidationExceptionMapperMore generic Exception Mapper compared to ConstraintViolationException - does not provide any details except the message.
-