Class ExtractorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
jakarta.ws.rs.ProcessingException
org.glassfish.jersey.internal.inject.ExtractorException
- All Implemented Interfaces:
Serializable
A runtime exception that contains a cause, a checked or runtime exception,
that may be passed to the cause of a
WebApplicationException
.- Author:
- Paul Sandoz
- See Also:
-
Constructor Summary
ConstructorDescriptionExtractorException
(String message) Create new parameter extractor exception.ExtractorException
(String message, Throwable cause) Create new parameter extractor exception.ExtractorException
(Throwable cause) Create new parameter extractor exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ExtractorException
Create new parameter extractor exception.- Parameters:
message
- exception message.
-
ExtractorException
Create new parameter extractor exception.- Parameters:
message
- exception message.cause
- exception cause.
-
ExtractorException
Create new parameter extractor exception.- Parameters:
cause
- exception cause.
-