Contents | Package | Class | Tree | Deprecated | Index | Help | XML for Java 1.0.4 | ||
PREV | NEXT | SHOW LISTS | HIDE LISTS |
java.lang.Object | +----java.lang.Throwable | +----java.lang.Exception | +----org.xml.sax.SAXException | +----org.xml.sax.SAXParseException
This exception will include information for locating the error in the original XML document. Note that although the application will receive a SAXParseException as the argument to the handlers in the ErrorHandler interface, the application is not actually required to throw the exception; instead, it can simply read the information in it and take a different action.
Since this exception is a subclass of SAXException, it inherits the ability to wrap another exception.
Constructor Summary | |
SAXParseException(java.lang.String message,
Locator locator)
|
|
SAXParseException(java.lang.String message,
Locator locator,
java.lang.Exception e)
|
|
SAXParseException(java.lang.String message,
java.lang.String publicId,
java.lang.String systemId,
int lineNumber,
int columnNumber)
|
|
SAXParseException(java.lang.String message,
java.lang.String publicId,
java.lang.String systemId,
int lineNumber,
int columnNumber,
java.lang.Exception e)
|
Method Summary | |
int | getColumnNumber()
|
int | getLineNumber()
|
java.lang.String | getPublicId()
|
java.lang.String | getSystemId()
|
Methods inherited from class org.xml.sax.SAXException |
getException, getMessage, toString |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public SAXParseException(java.lang.String message, Locator locator)
This constructor is especially useful when an application is creating its own exception from within a DocumentHandler callback.
message
- The error or warning message.
locator
- The locator object for the error or warning.
public SAXParseException(java.lang.String message, Locator locator, java.lang.Exception e)
This constructor is especially useful when an application is creating its own exception from within a DocumentHandler callback, and needs to wrap an existing exception that is not a subclass of SAXException.
message
- The error or warning message, or null to
use the message from the embedded exception.
locator
- The locator object for the error or warning.
e
- Any exception
public SAXParseException(java.lang.String message, java.lang.String publicId, java.lang.String systemId, int lineNumber, int columnNumber)
This constructor is most useful for parser writers.
If the system identifier is a URL, the parser must resolve it fully before creating the exception.
message
- The error or warning message.
publicId
- The public identifer of the entity that generated
the error or warning.
systemId
- The system identifer of the entity that generated
the error or warning.
lineNumber
- The line number of the end of the text that
caused the error or warning.
columnNumber
- The column number of the end of the text that
cause the error or warning.
public SAXParseException(java.lang.String message, java.lang.String publicId, java.lang.String systemId, int lineNumber, int columnNumber, java.lang.Exception e)
This constructor is most useful for parser writers who need to wrap an exception that is not a subclass of SAXException.
If the system identifier is a URL, the parser must resolve it fully before creating the exception.
message
- The error or warning message, or null to use
the message from the embedded exception.
publicId
- The public identifer of the entity that generated
the error or warning.
systemId
- The system identifer of the entity that generated
the error or warning.
lineNumber
- The line number of the end of the text that
caused the error or warning.
columnNumber
- The column number of the end of the text that
cause the error or warning.
e
- Another exception to embed in this one.
Method Detail |
public java.lang.String getPublicId()
public java.lang.String getSystemId()
If the system identifier is a URL, it will be resolved fully.
public int getLineNumber()
public int getColumnNumber()
The first column in a line is position 1.
Contents | Package | Class | Tree | Deprecated | Index | Help | |||
PREV | NEXT | SHOW LISTS | HIDE LISTS |