Inheritance diagram for org::jdom::input::JDOMParseException:

Public Member Functions | |
| JDOMParseException (String message, Throwable cause) | |
| JDOMParseException (String message, Document partialDocument, Throwable cause) | |
| Document | getPartialDocument () |
| String | getPublicId () |
| String | getSystemId () |
| int | getLineNumber () |
| int | getColumnNumber () |
JDOMParseException.
| org::jdom::input::JDOMParseException::JDOMParseException | ( | String | message, | |
| Throwable | cause | |||
| ) | [inline] |
This will create a parse Exception with the given message and wrap the Exception that cause a document parse to fail.
| message | String message indicating the problem that occurred. | |
| cause | Throwable that caused this to be thrown. |
| org::jdom::input::JDOMParseException::JDOMParseException | ( | String | message, | |
| Document | partialDocument, | |||
| Throwable | cause | |||
| ) | [inline] |
This will create a parse Exception with the given message and the partial document and wrap the Exception that cause a document parse to fail.
| message | String message indicating the problem that occurred. | |
| partialDocument | Document the portion of the input XML document that was successfully built. | |
| cause | Throwable that caused this to be thrown. |
| Document org::jdom::input::JDOMParseException::getPartialDocument | ( | ) | [inline] |
Returns the partial document that was successfully built before the error occurred.
| String org::jdom::input::JDOMParseException::getPublicId | ( | ) | [inline] |
Returns the public identifier of the entity where the parse error occurred.
null if the information is not available. | String org::jdom::input::JDOMParseException::getSystemId | ( | ) | [inline] |
Returns the system identifier of the entity where the parse error occurred.
null if the information is not available. | int org::jdom::input::JDOMParseException::getLineNumber | ( | ) | [inline] |
Returns the line number of the end of the text where the parse error occurred.
The first line in the document is line 1.
| int org::jdom::input::JDOMParseException::getColumnNumber | ( | ) | [inline] |
Returns the column number of the end of the text where the parse error occurred.
The first column in a line is position 1.
1.5.1