Package org.apache.unomi.router.rest
Class PartialContentException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
javax.ws.rs.WebApplicationException
org.apache.unomi.router.rest.PartialContentException
- All Implemented Interfaces:
Serializable
public class PartialContentException
extends javax.ws.rs.WebApplicationException
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstruct a new "partial content" exception.PartialContentException
(String message) Construct a new "partial content" exception.PartialContentException
(String message, Throwable cause) Construct a new "partial content" exception.PartialContentException
(String message, javax.ws.rs.core.Response response) PartialContentException
(String message, javax.ws.rs.core.Response response, Throwable cause) PartialContentException
(Throwable cause) Construct a new "partial content" exception.PartialContentException
(javax.ws.rs.core.Response response, Throwable cause) -
Method Summary
Methods inherited from class javax.ws.rs.WebApplicationException
getResponse
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PartialContentException
public PartialContentException()Construct a new "partial content" exception. -
PartialContentException
Construct a new "partial content" exception.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).
-
PartialContentException
-
PartialContentException
Construct a new "partial content" exception.- Parameters:
cause
- the underlying cause of the exception.
-
PartialContentException
Construct a new "partial content" exception.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).cause
- the underlying cause of the exception.
-
PartialContentException
-
PartialContentException
-