Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.sun.xacml
Class ParsingException  view ParsingException download ParsingException.java

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bycom.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 Class Summary
 
Nested classes inherited from class java.lang.Throwable
 
Field Summary
 
Fields inherited from class java.lang.Exception
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
ParsingException()
          Constructs a new ParsingException with no message or cause.
ParsingException(java.lang.String message)
          Constructs a new ParsingException with a message, but no cause.
ParsingException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new ParsingException with a message and a cause.
ParsingException(java.lang.Throwable cause)
          Constructs a new ParsingException with a cause, but no message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

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.