Class UpdaterException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- jakarta.ws.rs.ProcessingException
-
- org.glassfish.jersey.internal.inject.UpdaterException
-
- All Implemented Interfaces:
Serializable
public class UpdaterException 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, Gaurav Gupta
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UpdaterException(String message)Create new parameter extractor exception.UpdaterException(String message, Throwable cause)Create new parameter extractor exception.UpdaterException(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
-
UpdaterException
public UpdaterException(String message)
Create new parameter extractor exception.- Parameters:
message- exception message.
-
UpdaterException
public UpdaterException(String message, Throwable cause)
Create new parameter extractor exception.- Parameters:
message- exception message.cause- exception cause.
-
UpdaterException
public UpdaterException(Throwable cause)
Create new parameter extractor exception.- Parameters:
cause- exception cause.
-
-