Index (Frames) | Index (No Frames) | Package | Package Tree | Tree
org.xml.sax

Class SAXParseException

java.lang.Object
|
+--java.lang.Throwable
   |
   +--java.lang.Exception
      |
      +--org.xml.sax.SAXException
         |
         +--org.xml.sax.SAXParseException


public class SAXParseException

extends SAXException

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 org.xml.sax.ErrorHandler 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 org.xml.sax.SAXException SAXException, it inherits the ability to wrap another exception.

Since:Author:See Also:

Constructor Summary

SAXParseException(java.lang.String message, org.xml.sax.Locator locator)

Create a new SAXParseException from a message and a Locator.
SAXParseException(java.lang.String message, org.xml.sax.Locator locator, java.lang.Exception e)

Wrap an existing exception in a SAXParseException.
SAXParseException(java.lang.String message, java.lang.String publicId, java.lang.String systemId, int lineNumber, int columnNumber)

Create a new SAXParseException.
SAXParseException(java.lang.String message, java.lang.String publicId, java.lang.String systemId, int lineNumber, int columnNumber, java.lang.Exception e)

Create a new SAXParseException with an embedded exception.

Method Summary

intgetColumnNumber()

The column number of the end of the text where the exception occurred.
intgetLineNumber()

The line number of the end of the text where the exception occurred.
java.lang.StringgetPublicId()

Get the public identifier of the entity where the exception occurred.
java.lang.StringgetSystemId()

Get the system identifier of the entity where the exception occurred.

Constructor Details

SAXParseException

public SAXParseException(java.lang.String message, java.lang.String publicId, java.lang.String systemId, int lineNumber, int columnNumber)

Create a new SAXParseException.

This constructor is most useful for parser writers.

All parameters except the message are as if they were provided by a Locator. For example, if the system identifier is a URL (including relative filename), the caller must resolve it fully before creating the exception.

Parameters:


SAXParseException

public SAXParseException(java.lang.String message, java.lang.String publicId, java.lang.String systemId, int lineNumber, int columnNumber, java.lang.Exception e)

Create a new SAXParseException with an embedded exception.

This constructor is most useful for parser writers who need to wrap an exception that is not a subclass of org.xml.sax.SAXException SAXException.

All parameters except the message and exception are as if they were provided by a Locator. For example, if the system identifier is a URL (including relative filename), the caller must resolve it fully before creating the exception.

Parameters:


SAXParseException

public SAXParseException(java.lang.String message, org.xml.sax.Locator locator)

Create a new SAXParseException from a message and a Locator.

This constructor is especially useful when an application is creating its own exception from within a org.xml.sax.ContentHandler ContentHandler callback.

Parameters:

See Also:


SAXParseException

public SAXParseException(java.lang.String message, org.xml.sax.Locator locator, java.lang.Exception e)

Wrap an existing exception in a SAXParseException.

This constructor is especially useful when an application is creating its own exception from within a org.xml.sax.ContentHandler ContentHandler callback, and needs to wrap an existing exception that is not a subclass of org.xml.sax.SAXException SAXException.

Parameters:

See Also:


Method Details

getColumnNumber

public int getColumnNumber()

The column number of the end of the text where the exception occurred.

The first column in a line is position 1.

Returns:

See Also:


getLineNumber

public int getLineNumber()

The line number of the end of the text where the exception occurred.

The first line is line 1.

Returns:

See Also:


getPublicId

public String getPublicId()

Get the public identifier of the entity where the exception occurred.

Returns:

See Also:


getSystemId

public String getSystemId()

Get the system identifier of the entity where the exception occurred.

If the system identifier is a URL, it will have been resolved fully.

Returns:

See Also: