public class ParserException
extends java.lang.Exception
Constructor | Description |
---|---|
ParserException() |
Default constructor
|
ParserException(java.lang.String message) |
Overloaded constructor, takes the reason as parameter.
|
ParserException(java.lang.String message,
java.lang.Throwable cause) |
|
ParserException(java.lang.Throwable cause) |
public ParserException(java.lang.Throwable cause)
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 ParserException(java.lang.String message, java.lang.Throwable cause)
message
- detail messagecause
- 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 ParserException(java.lang.String message)
message
- public ParserException()