java.lang.Object
java.lang.Throwable
java.lang.Exception
com.sun.xacml.ParsingException
- All Implemented Interfaces:
- java.io.Serializable
- public class ParsingException
- extends java.lang.Exception
Exception that gets thrown if any general parsing error occurs.
- Since:
- 1.0
Nested classes inherited from class java.lang.Throwable |
|
Fields inherited from class java.lang.Exception |
|
Fields inherited from class java.lang.Throwable |
|
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
ParsingException
public ParsingException()
- Constructs a new
ParsingException
with no message
or cause.
ParsingException
public ParsingException(java.lang.String message)
- Constructs a new
ParsingException
with a message,
but no cause. The message is saved for later retrieval by the
Throwable.getMessage()
method.
ParsingException
public ParsingException(java.lang.Throwable cause)
- Constructs a new
ParsingException
with a cause,
but no message. The cause is saved for later retrieval by the
Throwable.getCause()
method.
ParsingException
public ParsingException(java.lang.String message,
java.lang.Throwable cause)
- Constructs a new
ParsingException
with a message
and a cause. The message and cause are saved for later retrieval
by the
Throwable.getMessage() and
Throwable.getCause()
methods.