Class XMLParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.jackrabbit.vault.util.xml.xerces.xni.XNIException
-
- org.apache.jackrabbit.vault.util.xml.xerces.xni.parser.XMLParseException
-
- All Implemented Interfaces:
java.io.Serializable
public class XMLParseException extends XNIException
A parsing exception. This exception is different from the standard XNI exception in that it stores the location in the document (or its entities) where the exception occurred.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description XMLParseException(XMLLocator locator, java.lang.String message)Constructs a parse exception.XMLParseException(XMLLocator locator, java.lang.String message, java.lang.Exception exception)Constructs a parse exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetBaseSystemId()Returns the base system identifier.intgetColumnNumber()Returns the row number.java.lang.StringgetExpandedSystemId()Returns the expanded system identifier.intgetLineNumber()Returns the line number.java.lang.StringgetLiteralSystemId()Returns the literal system identifier.java.lang.StringgetPublicId()Returns the public identifier.java.lang.StringtoString()Returns a string representation of this object.-
Methods inherited from class org.apache.jackrabbit.vault.util.xml.xerces.xni.XNIException
getException
-
-
-
-
Constructor Detail
-
XMLParseException
public XMLParseException(XMLLocator locator, java.lang.String message)
Constructs a parse exception.
-
XMLParseException
public XMLParseException(XMLLocator locator, java.lang.String message, java.lang.Exception exception)
Constructs a parse exception.
-
-
Method Detail
-
getPublicId
public java.lang.String getPublicId()
Returns the public identifier.
-
getExpandedSystemId
public java.lang.String getExpandedSystemId()
Returns the expanded system identifier.
-
getLiteralSystemId
public java.lang.String getLiteralSystemId()
Returns the literal system identifier.
-
getBaseSystemId
public java.lang.String getBaseSystemId()
Returns the base system identifier.
-
getLineNumber
public int getLineNumber()
Returns the line number.
-
getColumnNumber
public int getColumnNumber()
Returns the row number.
-
toString
public java.lang.String toString()
Returns a string representation of this object.- Overrides:
toStringin classjava.lang.Throwable
-
-