Uses of Interface
jakarta.ws.rs.ext.ExceptionMapper
-
Packages that use ExceptionMapper Package Description jakarta.ws.rs.ext APIs that provide extensions to the types supported by the JAX-RS API.org.glassfish.jersey.internal Common Jersey internal API classes.org.glassfish.jersey.server.monitoring Jersey server-side monitoring JMX MBeans interfaces.org.glassfish.jersey.spi Common Jersey service provider contract (SPI) classes. -
-
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.glassfish.jersey.internal
Methods in org.glassfish.jersey.internal that return ExceptionMapper Modifier and Type Method Description <T extends Throwable>
ExceptionMapper<T>ExceptionMapperFactory. find(Class<T> type)<T extends Throwable>
ExceptionMapper<T>ExceptionMapperFactory. findMapping(T exceptionInstance)<T extends Throwable>
ExceptionMapper<T>JaxrsProviders. getExceptionMapper(Class<T> type) -
Uses of ExceptionMapper in org.glassfish.jersey.server.monitoring
Methods in org.glassfish.jersey.server.monitoring that return ExceptionMapper Modifier and Type Method Description ExceptionMapper<?>RequestEvent. getExceptionMapper()Get theExceptionMapperthat was found and used during the exception mapping phase. -
Uses of ExceptionMapper in org.glassfish.jersey.spi
Subinterfaces of ExceptionMapper in org.glassfish.jersey.spi Modifier and Type Interface Description interfaceExtendedExceptionMapper<T extends Throwable>Extension of aexception mapper interface.Methods in org.glassfish.jersey.spi that return ExceptionMapper Modifier and Type Method Description <T extends Throwable>
ExceptionMapper<T>ExceptionMappers. find(Class<T> type)Get an exception mapping provider for a particular class of exception.<T extends Throwable>
ExceptionMapper<T>ExceptionMappers. findMapping(T exceptionInstance)Get an exception mapping provider for a particular exception instance.
-