|
J2ME[tm] Web Services | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.lang.Throwable | +--java.lang.Exception | +--org.xml.sax.SAXException | +--org.xml.sax.SAXParseException
Encapsulate an XML parse error or warning.
This module, both source code and documentation, is in the Public Domain, and comes with NO WARRANTY.
This exception will include information for locating the error in the original XML document. Note that although the application will receive a SAXParseException, 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.
SAXException
,
Locator
Constructor Summary | |
SAXParseException(java.lang.String message,
Locator locator)
Create a new SAXParseException from a message and a Locator. |
Method Summary | |
int |
getColumnNumber()
The column number of the end of the text where the exception occurred. |
int |
getLineNumber()
The line number of the end of the text where the exception occurred. |
java.lang.String |
getPublicId()
Get the public identifier of the entity where the exception occurred. |
java.lang.String |
getSystemId()
Get the system identifier of the entity where the exception occurred. |
Methods inherited from class java.lang.Throwable |
getMessage, printStackTrace, toString |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public SAXParseException(java.lang.String message, Locator locator)
message
- The error or warning message.locator
- The locator object for the error or warning (may be
null).Locator
Method Detail |
public java.lang.String getPublicId()
Locator.getPublicId()
public java.lang.String getSystemId()
If the system identifier is a URL, it will be resolved fully.
Locator.getSystemId()
public int getLineNumber()
Locator.getLineNumber()
public int getColumnNumber()
The first column in a line is position 1.
Locator.getColumnNumber()
|
J2ME[tm] Web Services | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |