Class MessageBodyProcessingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
javax.ws.rs.ProcessingException
org.glassfish.jersey.message.internal.MessageBodyProcessingException
- All Implemented Interfaces:
Serializable
public class MessageBodyProcessingException
extends javax.ws.rs.ProcessingException
Jersey exception signaling that error occurred during reading or writing message body (entity).
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionMessageBodyProcessingException
(String message) Creates new instance initialized with exception message.MessageBodyProcessingException
(String message, Throwable cause) Creates new instance initialized with exception message and exception cause.Creates new instance initialized with exception cause. -
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
-
MessageBodyProcessingException
Creates new instance initialized with exception cause.- Parameters:
cause
- Exception cause.
-
MessageBodyProcessingException
Creates new instance initialized with exception message and exception cause.- Parameters:
message
- Message.cause
- Exception cause.
-
MessageBodyProcessingException
Creates new instance initialized with exception message.- Parameters:
message
- Message.
-