javax.xml.xpath
Class XPathException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjavax.xml.xpath.XPathException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
XPathExpressionException, XPathFactoryConfigurationException

public class XPathException
extends java.lang.Exception

XPathException represents a generic XPath exception.

Since:
1.5
See Also:
Serialized Form

Constructor Summary
XPathException(java.lang.String message)
          Constructs a new XPathException with the specified detail message.
XPathException(java.lang.Throwable cause)
          Constructs a new XPathException with the specified cause.
 
Method Summary
 java.lang.Throwable getCause()
          Get the cause of this XPathException.
 void printStackTrace()
          Print stack trace to System.err.
 void printStackTrace(java.io.PrintStream s)
          Print stack trace to specified PrintStream.
 void printStackTrace(java.io.PrintWriter s)
          Print stack trace to specified PrintWriter.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, initCause, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

XPathException

public XPathException(java.lang.String message)

Constructs a new XPathException with the specified detail message.

The cause is not initialized.

If message is null, then a NullPointerException is thrown.

Parameters:
message - The detail message.
Throws:
java.lang.NullPointerException - When message is null.

XPathException

public XPathException(java.lang.Throwable cause)

Constructs a new XPathException with the specified cause.

If cause is null, then a NullPointerException is thrown.

Parameters:
cause - The cause.
Throws:
java.lang.NullPointerException - if cause is null.
Method Detail

getCause

public java.lang.Throwable getCause()

Get the cause of this XPathException.

Returns:
Cause of this XPathException.

printStackTrace

public void printStackTrace(java.io.PrintStream s)

Print stack trace to specified PrintStream.

Parameters:
s - Print stack trace to this PrintStream.

printStackTrace

public void printStackTrace()

Print stack trace to System.err.


printStackTrace

public void printStackTrace(java.io.PrintWriter s)

Print stack trace to specified PrintWriter.

Parameters:
s - Print stack trace to this PrintWriter.