Uses of Interface
jakarta.ws.rs.ext.ExceptionMapper
-
Packages that use ExceptionMapper Package Description com.fasterxml.jackson.jakarta.rs.base jakarta.ws.rs.ext APIs that provide extensions to the types supported by the JAX-RS API.org.jboss.resteasy.client.jaxrs.internal org.jboss.resteasy.core org.jboss.resteasy.core.providerfactory org.jboss.resteasy.plugins.providers.jackson org.jboss.resteasy.plugins.validation org.jboss.resteasy.spi -
-
Uses of ExceptionMapper in com.fasterxml.jackson.jakarta.rs.base
Classes in com.fasterxml.jackson.jakarta.rs.base that implement ExceptionMapper Modifier and Type Class Description classJsonMappingExceptionMapperImplementation ifExceptionMapperto send down a "400 Bad Request" response in the event that unmappable JSON is received.classJsonParseExceptionMapperImplementation ofExceptionMapperto send down a "400 Bad Request" in the event unparsable JSON is received. -
Uses of ExceptionMapper in jakarta.ws.rs.ext
Methods in jakarta.ws.rs.ext that return ExceptionMapper Modifier and Type Method Description <T extends Throwable>
ExceptionMapper<T>Providers. getExceptionMapper(Class<T> type)Get an exception mapping provider for a particular class of exception. -
Uses of ExceptionMapper in org.jboss.resteasy.client.jaxrs.internal
Methods in org.jboss.resteasy.client.jaxrs.internal that return ExceptionMapper Modifier and Type Method Description <T extends Throwable>
ExceptionMapper<T>ClientConfiguration. getExceptionMapper(Class<T> type) -
Uses of ExceptionMapper in org.jboss.resteasy.core
Methods in org.jboss.resteasy.core that return ExceptionMapper Modifier and Type Method Description <T extends Throwable>
ExceptionMapper<T>ThreadLocalResteasyProviderFactory. getExceptionMapper(Class<T> type)ExceptionMapper<Throwable>ThreadLocalResteasyProviderFactory. getThrowableExceptionMapper() -
Uses of ExceptionMapper in org.jboss.resteasy.core.providerfactory
Fields in org.jboss.resteasy.core.providerfactory with type parameters of type ExceptionMapper Modifier and Type Field Description protected Map<Class<?>,SortedKey<ExceptionMapper>>ServerHelper. exceptionMappersMethods in org.jboss.resteasy.core.providerfactory that return ExceptionMapper Modifier and Type Method Description <T extends Throwable>
ExceptionMapper<T>ResteasyProviderFactoryDelegate. getExceptionMapper(Class<T> type)<T extends Throwable>
ExceptionMapper<T>ResteasyProviderFactoryImpl. getExceptionMapper(Class<T> type)<T extends Throwable>
ExceptionMapper<T>ResteasyProviderFactoryImpl. getExceptionMapperForClass(Class<T> type)ExceptionMapper<Throwable>ResteasyProviderFactoryDelegate. getThrowableExceptionMapper()ExceptionMapper<Throwable>ResteasyProviderFactoryImpl. getThrowableExceptionMapper()Methods in org.jboss.resteasy.core.providerfactory that return types with arguments of type ExceptionMapper Modifier and Type Method Description Map<Class<?>,SortedKey<ExceptionMapper>>NOOPServerHelper. getExceptionMappers()Map<Class<?>,SortedKey<ExceptionMapper>>ServerHelper. getExceptionMappers()protected Map<Class<?>,SortedKey<ExceptionMapper>>ServerHelper. getExceptionMappersForWrite() -
Uses of ExceptionMapper in org.jboss.resteasy.plugins.providers.jackson
Classes in org.jboss.resteasy.plugins.providers.jackson that implement ExceptionMapper Modifier and Type Class Description classUnrecognizedPropertyExceptionHandler(RESTEASY-1485) Address concerns of a possible XSS attack by removing some details of the exception. -
Uses of ExceptionMapper in org.jboss.resteasy.plugins.validation
Classes in org.jboss.resteasy.plugins.validation that implement ExceptionMapper Modifier and Type Class Description classResteasyViolationExceptionMapper -
Uses of ExceptionMapper in org.jboss.resteasy.spi
Methods in org.jboss.resteasy.spi that return ExceptionMapper Modifier and Type Method Description ExceptionMapper<Throwable>ResteasyProviderFactory. getThrowableExceptionMapper()Returns an exception mapper which handles the generic throwable which is typically the default exception mapper.
-