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
public class ExtractorException extends ProcessingException
A runtime exception that contains a cause, a checked or runtime exception, that may be passed to the cause of aWebApplicationException.- Author:
- Paul Sandoz
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExtractorException(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 Detail
-
ExtractorException
public ExtractorException(String message)
Create new parameter extractor exception.- Parameters:
message- exception message.
-
ExtractorException
public ExtractorException(String message, Throwable cause)
Create new parameter extractor exception.- Parameters:
message- exception message.cause- exception cause.
-
ExtractorException
public ExtractorException(Throwable cause)
Create new parameter extractor exception.- Parameters:
cause- exception cause.
-
-