public class ParsingException extends Exception
| Constructor and Description |
|---|
ParsingException()
Constructs a new
ParsingException with no message or cause. |
ParsingException(String message)
Constructs a new
ParsingException with a message, but no cause. |
ParsingException(String message,
Throwable cause)
Constructs a new
ParsingException with a message and a cause. |
ParsingException(Throwable cause)
Constructs a new
ParsingException with a cause, but no message. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic ParsingException()
ParsingException with no message or cause.public ParsingException(String message)
ParsingException 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 ParsingException(Throwable cause)
ParsingException 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 ParsingException(String message, Throwable cause)
ParsingException 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 © 2019 WSO2. All rights reserved.