public class MessageProcessingException extends RuntimeException
| Constructor and Description |
|---|
MessageProcessingException(String message)
Constructs a new message processing exception with a specified detail
message.
|
MessageProcessingException(String message,
Throwable cause)
Constructs a new message processing exception with the specified cause and
a detail message.
|
MessageProcessingException(Throwable cause)
Constructs a new message processing exception with the specified cause and
a detail message of
(cause==null ? null : cause.toString()). |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic MessageProcessingException(Throwable cause)
(cause==null ? null : cause.toString()).cause - the cause (which is saved for later retrieval by the
Throwable.getCause() method). (A null value is permitted, and
indicates that the cause is nonexistent or unknown.)public MessageProcessingException(String message, Throwable cause)
message - detailed exception message.cause - the cause (which is saved for later retrieval by the
Throwable.getCause() method). (A null value is permitted, and
indicates that the cause is nonexistent or unknown.)public MessageProcessingException(String message)
message - detailed exception message.Copyright © 2013. All Rights Reserved.