Class ExtractorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
javax.ws.rs.ProcessingException
org.glassfish.jersey.internal.inject.ExtractorException
- All Implemented Interfaces:
Serializable
public class ExtractorException
extends javax.ws.rs.ProcessingException
A runtime exception that contains a cause, a checked or runtime exception,
that may be passed to the cause of a
WebApplicationException
.- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionExtractorException
(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
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
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.
-