public class CSSParseException extends CSSException
CSSException.ErrorCode| Constructor and Description |
|---|
CSSParseException(String message,
Locator locator)
Create a new CSSParseException from a message and a Locator.
|
CSSParseException(String message,
Locator locator,
Exception e)
Wrap an existing exception in a CSSParseException.
|
CSSParseException(String message,
String uri,
int lineNumber,
int columnNumber)
Create a new CSSParseException.
|
CSSParseException(String message,
String uri,
int lineNumber,
int columnNumber,
Exception e)
Create a new CSSParseException with an embedded exception.
|
| Modifier and Type | Method and Description |
|---|---|
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 |
getURI()
Get the URI of the document where the exception occurred.
|
getCode, getMessageaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic CSSParseException(String message, Locator locator)
This constructor is especially useful when an application is creating its own exception from within a DocumentHandler callback.
message - The error or warning message.locator - The locator object for the error or warning.Locatorpublic CSSParseException(String message, Locator locator, Exception e)
This constructor is especially useful when an application is creating its own exception from within a DocumentHandler callback, and needs to wrap an existing exception that is not a subclass of CSSException.
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.e - Any exceptionLocatorpublic CSSParseException(String message, String uri, int lineNumber, int columnNumber)
This constructor is most useful for parser writers.
the parser must resolve the URI fully before creating the exception.
message - The error or warning message.uri - The URI of the document 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.public CSSParseException(String message, String uri, int lineNumber, int columnNumber, Exception e)
This constructor is most useful for parser writers who need to wrap an exception that is not a subclass of CSSException.
The parser must resolve the URI fully before creating the exception.
message - The error or warning message, or null to use
the message from the embedded exception.uri - The URI of the document 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.public String getURI()
The URI will be resolved fully.
public int getLineNumber()
Locator.getLineNumber()public int getColumnNumber()
The first column in a line is position 1.
Locator.getColumnNumber()Copyright © 2021. All rights reserved.