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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PartialContentException()
Construct 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 java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
PartialContentException
public PartialContentException()
Construct a new "partial content" exception.
-
PartialContentException
public PartialContentException(String message)
Construct a new "partial content" exception.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).
-
PartialContentException
public PartialContentException(String message, javax.ws.rs.core.Response response)
-
PartialContentException
public PartialContentException(Throwable cause)
Construct a new "partial content" exception.- Parameters:
cause
- the underlying cause of the exception.
-
PartialContentException
public PartialContentException(String message, Throwable cause)
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
public PartialContentException(javax.ws.rs.core.Response response, Throwable cause)
-
-