Inheritance diagram for JDOMException::
Public Methods | |
JDOMException () | |
JDOMException (String message) | |
JDOMException (String message, Throwable cause) | |
Throwable | initCause (Throwable cause) |
String | getMessage () |
void | printStackTrace () |
void | printStackTrace (PrintStream s) |
void | printStackTrace (PrintWriter w) |
Throwable | getCause () |
Protected Attributes | |
Throwable | cause |
JDOMException
This Exception
subclass is the top level Exception
that JDOM classes can throw. It's subclasses add specificity to the problems that can occur using JDOM, but this single Exception
can be caught to handle all JDOM specific problems.
|
This will create an |
|
This will create an
|
|
This will create an
|
|
This will return the root cause
|
|
This returns the message for the
|
|
Intializes the cause of this exception to be the specified value.
|
|
This prints the stack trace of the |
|
This prints the stack trace of the |
|
This prints the stack trace of the |
|
A wrapped |