public class ProcessingException extends RuntimeException
| Constructor and Description |
|---|
ProcessingException()
Constructs a new
ProcessingException with no message or cause. |
ProcessingException(String message)
Constructs a new
ProcessingException with a message, but no cause. |
ProcessingException(String message,
Throwable cause)
Constructs a new
ProcessingException with a message and a cause. |
ProcessingException(Throwable cause)
Constructs a new
ProcessingException with a cause, but no message. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic ProcessingException()
ProcessingException with no message or cause.public ProcessingException(String message)
ProcessingException with a message, but no cause. The message
is saved for later retrieval by the Throwable.getMessage() method.message - the detail message (null if nonexistent or unknown)public ProcessingException(Throwable cause)
ProcessingException with a cause, but no message. The cause is
saved for later retrieval by the Throwable.getCause()
method.cause - the cause (null if nonexistent or unknown)public ProcessingException(String message, Throwable cause)
ProcessingException with a message and a cause. The message and
cause are saved for later retrieval by the Throwable.getMessage() and Throwable.getCause()
methods.message - the detail message (null if nonexistent or unknown)cause - the cause (null if nonexistent or unknown)Copyright © 2018 WSO2. All rights reserved.