Class SAXParseException
- All Implemented Interfaces:
Serializable
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.
- Since:
- 1.4, SAX 1.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSAXParseException
(String message, String publicId, String systemId, int lineNumber, int columnNumber) Create a new SAXParseException.SAXParseException
(String message, String publicId, String systemId, int lineNumber, int columnNumber, Exception e) Create a new SAXParseException with an embedded exception.SAXParseException
(String message, Locator locator) Create a new SAXParseException from a message and a Locator.SAXParseException
(String message, Locator locator, Exception e) Wrap an existing exception in a SAXParseException. -
Method Summary
Modifier and TypeMethodDescriptionint
The column number of the end of the text where the exception occurred.int
The line number of the end of the text where the exception occurred.Get the public identifier of the entity where the exception occurred.Get the system identifier of the entity where the exception occurred.toString()
Override toString to provide more detailed error message.Methods declared in class SAXException
getCause, getException, getMessage
Modifier and TypeMethodDescriptiongetCause()
Return the cause of the exceptionReturn the embedded exception, if any.Return a detail message for this exception.Methods declared in class Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
Modifier and TypeMethodDescriptionfinal void
addSuppressed
(Throwable exception) Appends the specified exception to the exceptions that were suppressed in order to deliver this exception.Fills in the execution stack trace.Creates a localized description of this throwable.Provides programmatic access to the stack trace information printed byThrowable.printStackTrace()
.final Throwable[]
Returns an array containing all of the exceptions that were suppressed, typically by thetry
-with-resources statement, in order to deliver this exception.Initializes the cause of this throwable to the specified value.void
Prints this throwable and its backtrace to the standard error stream.void
Prints this throwable and its backtrace to the specified print stream.void
Prints this throwable and its backtrace to the specified print writer.void
setStackTrace
(StackTraceElement[] stackTrace) Sets the stack trace elements that will be returned byThrowable.getStackTrace()
and printed byThrowable.printStackTrace()
and related methods.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Modifier and TypeMethodDescriptionprotected Object
clone()
Creates and returns a copy of this object.boolean
Indicates whether some other object is "equal to" this one.protected void
finalize()
Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class
<?> getClass()
Returns the runtime class of thisObject
.int
hashCode()
Returns a hash code value for this object.final void
notify()
Wakes up a single thread that is waiting on this object's monitor.final void
Wakes up all threads that are waiting on this object's monitor.final void
wait()
Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final void
wait
(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final void
wait
(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
SAXParseException
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
ContentHandler
callback.- Parameters:
message
- The error or warning message.locator
- The locator object for the error or warning (may be null).- See Also:
-
SAXParseException
Wrap an existing exception in a SAXParseException.This constructor is especially useful when an application is creating its own exception from within a
ContentHandler
callback, and needs to wrap an existing exception that is not a subclass ofSAXException
.- Parameters:
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 (may be null).e
- Any exception.- See Also:
-
SAXParseException
public SAXParseException(String message, String publicId, 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:
message
- The error or warning message.publicId
- The public identifier of the entity that generated the error or warning.systemId
- The system identifier 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.
-
SAXParseException
public SAXParseException(String message, String publicId, String systemId, int lineNumber, int columnNumber, 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
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:
message
- The error or warning message, or null to use the message from the embedded exception.publicId
- The public identifier of the entity that generated the error or warning.systemId
- The system identifier 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 Details
-
getPublicId
Get the public identifier of the entity where the exception occurred.- Returns:
- A string containing the public identifier, or null if none is available.
- See Also:
-
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:
- A string containing the system identifier, or null if none is available.
- 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:
- An integer representing the line number, or -1 if none is available.
- See Also:
-
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:
- An integer representing the column number, or -1 if none is available.
- See Also:
-
toString
Override toString to provide more detailed error message.- Overrides:
toString
in classSAXException
- Returns:
- A string representation of this exception.
-