javax.xml.xpath
Class XPathException

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.lang.Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable 
      extended by java.lang.Exception sample code for java.lang.Exception definition code for java.lang.Exception 
          extended by javax.xml.xpath.XPathException
All Implemented Interfaces:
Serializable sample code for java.io.Serializable definition code for java.io.Serializable
Direct Known Subclasses:
XPathExpressionException sample code for javax.xml.xpath.XPathExpressionException definition code for javax.xml.xpath.XPathExpressionException , XPathFactoryConfigurationException sample code for javax.xml.xpath.XPathFactoryConfigurationException definition code for javax.xml.xpath.XPathFactoryConfigurationException

public class XPathException
extends Exception sample code for java.lang.Exception definition code for java.lang.Exception

XPathException represents a generic XPath exception.

Since:
1.5
See Also:
Serialized Form

Constructor Summary
XPathException sample code for javax.xml.xpath.XPathException.XPathException(java.lang.String) definition code for javax.xml.xpath.XPathException.XPathException(java.lang.String) (String sample code for java.lang.String definition code for java.lang.String  message)
          Constructs a new XPathException with the specified detail message.
XPathException sample code for javax.xml.xpath.XPathException.XPathException(java.lang.Throwable) definition code for javax.xml.xpath.XPathException.XPathException(java.lang.Throwable) (Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable  cause)
          Constructs a new XPathException with the specified cause.
 
Method Summary
 Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable getCause sample code for javax.xml.xpath.XPathException.getCause() definition code for javax.xml.xpath.XPathException.getCause() ()
          Returns the cause of this throwable or null if the cause is nonexistent or unknown.
 void printStackTrace sample code for javax.xml.xpath.XPathException.printStackTrace() definition code for javax.xml.xpath.XPathException.printStackTrace() ()
          Prints this throwable and its backtrace to the standard error stream.
 void printStackTrace sample code for javax.xml.xpath.XPathException.printStackTrace(java.io.PrintStream) definition code for javax.xml.xpath.XPathException.printStackTrace(java.io.PrintStream) (PrintStream sample code for java.io.PrintStream definition code for java.io.PrintStream  s)
          Prints this throwable and its backtrace to the specified print stream.
 void printStackTrace sample code for javax.xml.xpath.XPathException.printStackTrace(java.io.PrintWriter) definition code for javax.xml.xpath.XPathException.printStackTrace(java.io.PrintWriter) (PrintWriter sample code for java.io.PrintWriter definition code for java.io.PrintWriter  s)
          Prints this throwable and its backtrace to the specified print writer.
 
Methods inherited from class java.lang.Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable
fillInStackTrace sample code for java.lang.Throwable.fillInStackTrace() definition code for java.lang.Throwable.fillInStackTrace() , getLocalizedMessage sample code for java.lang.Throwable.getLocalizedMessage() definition code for java.lang.Throwable.getLocalizedMessage() , getMessage sample code for java.lang.Throwable.getMessage() definition code for java.lang.Throwable.getMessage() , getStackTrace sample code for java.lang.Throwable.getStackTrace() definition code for java.lang.Throwable.getStackTrace() , initCause sample code for java.lang.Throwable.initCause(java.lang.Throwable) definition code for java.lang.Throwable.initCause(java.lang.Throwable) , setStackTrace sample code for java.lang.Throwable.setStackTrace(java.lang.StackTraceElement[]) definition code for java.lang.Throwable.setStackTrace(java.lang.StackTraceElement[]) , toString sample code for java.lang.Throwable.toString() definition code for java.lang.Throwable.toString()
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
clone sample code for java.lang.Object.clone() definition code for java.lang.Object.clone() , equals sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) , finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , hashCode sample code for java.lang.Object.hashCode() definition code for java.lang.Object.hashCode() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 

Constructor Detail

XPathException sample code for javax.xml.xpath.XPathException(java.lang.String) definition code for javax.xml.xpath.XPathException(java.lang.String)

public XPathException(String sample code for java.lang.String definition code for 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.

XPathException sample code for javax.xml.xpath.XPathException(java.lang.Throwable) definition code for javax.xml.xpath.XPathException(java.lang.Throwable)

public XPathException(Throwable sample code for java.lang.Throwable definition code for 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:
NullPointerException sample code for java.lang.NullPointerException definition code for java.lang.NullPointerException - if cause is null.
Method Detail

getCause sample code for javax.xml.xpath.XPathException.getCause() definition code for javax.xml.xpath.XPathException.getCause()

public Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable  getCause()
Description copied from class: Throwable sample code for java.lang.Throwable.getCause() definition code for java.lang.Throwable.getCause()
Returns the cause of this throwable or null if the cause is nonexistent or unknown. (The cause is the throwable that caused this throwable to get thrown.)

This implementation returns the cause that was supplied via one of the constructors requiring a Throwable, or that was set after creation with the Throwable.initCause(Throwable) sample code for java.lang.Throwable.initCause(java.lang.Throwable) definition code for java.lang.Throwable.initCause(java.lang.Throwable) method. While it is typically unnecessary to override this method, a subclass can override it to return a cause set by some other means. This is appropriate for a "legacy chained throwable" that predates the addition of chained exceptions to Throwable. Note that it is not necessary to override any of the PrintStackTrace methods, all of which invoke the getCause method to determine the cause of a throwable.

Overrides:
getCause sample code for java.lang.Throwable.getCause() definition code for java.lang.Throwable.getCause() in class Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable
Returns:
the cause of this throwable or null if the cause is nonexistent or unknown.

printStackTrace sample code for javax.xml.xpath.XPathException.printStackTrace(java.io.PrintStream) definition code for javax.xml.xpath.XPathException.printStackTrace(java.io.PrintStream)

public void printStackTrace(PrintStream sample code for java.io.PrintStream definition code for java.io.PrintStream  s)
Description copied from class: Throwable sample code for java.lang.Throwable.printStackTrace(java.io.PrintStream) definition code for java.lang.Throwable.printStackTrace(java.io.PrintStream)
Prints this throwable and its backtrace to the specified print stream.

Overrides:
printStackTrace sample code for java.lang.Throwable.printStackTrace(java.io.PrintStream) definition code for java.lang.Throwable.printStackTrace(java.io.PrintStream) in class Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable
Parameters:
s - PrintStream to use for output

printStackTrace sample code for javax.xml.xpath.XPathException.printStackTrace() definition code for javax.xml.xpath.XPathException.printStackTrace()

public void printStackTrace()
Description copied from class: Throwable sample code for java.lang.Throwable.printStackTrace() definition code for java.lang.Throwable.printStackTrace()
Prints this throwable and its backtrace to the standard error stream. This method prints a stack trace for this Throwable object on the error output stream that is the value of the field System.err. The first line of output contains the result of the Throwable.toString() sample code for java.lang.Throwable.toString() definition code for java.lang.Throwable.toString() method for this object. Remaining lines represent data previously recorded by the method Throwable.fillInStackTrace() sample code for java.lang.Throwable.fillInStackTrace() definition code for java.lang.Throwable.fillInStackTrace() . The format of this information depends on the implementation, but the following example may be regarded as typical:
 java.lang.NullPointerException
         at MyClass.mash(MyClass.java:9)
         at MyClass.crunch(MyClass.java:6)
         at MyClass.main(MyClass.java:3)
 
This example was produced by running the program:
 class MyClass {
     public static void main(String[] args) {
         crunch(null);
     }
     static void crunch(int[] a) {
         mash(a);
     }
     static void mash(int[] b) {
         System.out.println(b[0]);
     }
 }
 
The backtrace for a throwable with an initialized, non-null cause should generally include the backtrace for the cause. The format of this information depends on the implementation, but the following example may be regarded as typical:
 HighLevelException: MidLevelException: LowLevelException
         at Junk.a(Junk.java:13)
         at Junk.main(Junk.java:4)
 Caused by: MidLevelException: LowLevelException
         at Junk.c(Junk.java:23)
         at Junk.b(Junk.java:17)
         at Junk.a(Junk.java:11)
         ... 1 more
 Caused by: LowLevelException
         at Junk.e(Junk.java:30)
         at Junk.d(Junk.java:27)
         at Junk.c(Junk.java:21)
         ... 3 more
 
Note the presence of lines containing the characters "...". These lines indicate that the remainder of the stack trace for this exception matches the indicated number of frames from the bottom of the stack trace of the exception that was caused by this exception (the "enclosing" exception). This shorthand can greatly reduce the length of the output in the common case where a wrapped exception is thrown from same method as the "causative exception" is caught. The above example was produced by running the program:
 public class Junk {
     public static void main(String args[]) { 
         try {
             a();
         } catch(HighLevelException e) {
             e.printStackTrace();
         }
     }
     static void a() throws HighLevelException {
         try {
             b();
         } catch(MidLevelException e) {
             throw new HighLevelException(e);
         }
     }
     static void b() throws MidLevelException {
         c();
     }   
     static void c() throws MidLevelException {
         try {
             d();
         } catch(LowLevelException e) {
             throw new MidLevelException(e);
         }
     }
     static void d() throws LowLevelException { 
        e();
     }
     static void e() throws LowLevelException {
         throw new LowLevelException();
     }
 }

 class HighLevelException extends Exception {
     HighLevelException(Throwable cause) { super(cause); }
 }

 class MidLevelException extends Exception {
     MidLevelException(Throwable cause)  { super(cause); }
 }
 
 class LowLevelException extends Exception {
 }
 

Overrides:
printStackTrace sample code for java.lang.Throwable.printStackTrace() definition code for java.lang.Throwable.printStackTrace() in class Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable

printStackTrace sample code for javax.xml.xpath.XPathException.printStackTrace(java.io.PrintWriter) definition code for javax.xml.xpath.XPathException.printStackTrace(java.io.PrintWriter)

public void printStackTrace(PrintWriter sample code for java.io.PrintWriter definition code for java.io.PrintWriter  s)
Description copied from class: Throwable sample code for java.lang.Throwable.printStackTrace(java.io.PrintWriter) definition code for java.lang.Throwable.printStackTrace(java.io.PrintWriter)
Prints this throwable and its backtrace to the specified print writer.

Overrides:
printStackTrace sample code for java.lang.Throwable.printStackTrace(java.io.PrintWriter) definition code for java.lang.Throwable.printStackTrace(java.io.PrintWriter) in class Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable
Parameters:
s - PrintWriter to use for output