|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | 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. See http://www.saxproject.org for further information.
This exception may include information for locating the error
in the original XML document, as if it came from a Locator
object. 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.
SAXException,
Locator,
ErrorHandler| Constructor Summary | ||
SAXParseException(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. |
|
String |
getPublicId()
Get the public identifier of the entity where the exception occurred. |
|
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(String message, Locator locator)
This constructor is especially useful when an application is
creating its own exception from within a ContentHandler callback.
message - The error or warning message.locator - The locator object for the error or warning (may be
null).Locator| Method Detail |
public int getColumnNumber()
The first column in a line is position 1.
Locator.getColumnNumber()public int getLineNumber()
The first line is line 1.
Locator.getLineNumber()public String getPublicId()
Locator.getPublicId()public String getSystemId()
If the system identifier is a URL, it will have been resolved fully.
Locator.getSystemId()
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
Copyright 1999-2007 Research In Motion Limited. 295 Phillip Street, Waterloo, Ontario, Canada, N2L 3W8. All Rights Reserved.
Copyright 1993-2003 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
Copyright 2002-2003 Nokia Corporation All Rights Reserved.
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.