|
||||||||
PREV CLASS NEXT CLASS | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.lang.Throwable | +--java.lang.Exception | +--java.lang.RuntimeException | +--org.w3c.css.sac.CSSException | +--org.w3c.css.sac.CSSParseException
Encapsulate a CSS parse error or warning.
This exception will include information for locating the error in the original CSS document. Note that although the application will receive a CSSParseException 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 CSSException, it inherits the ability to wrap another exception.
Fields inherited from class org.w3c.css.sac.CSSException |
code, e, s,
S_SAC_NOT_SUPPORTED_ERR, S_SAC_SYNTAX_ERR,
S_SAC_UNSPECIFIED_ERR,
SAC_NOT_SUPPORTED_ERR, SAC_SYNTAX_ERR,
SAC_UNSPECIFIED_ERR |
Constructor Summary | |
CSSParseException(java.lang.String message, Locator locator)
Create a new CSSParseException from a message and a Locator. |
|
CSSParseException(java.lang.String message, Locator locator,
java.lang.Exception e) Wrap an existing exception in a CSSParseException. |
|
CSSParseException(java.lang.String message,
java.lang.String uri, int lineNumber,
int columnNumber) Create a new CSSParseException. |
|
CSSParseException(java.lang.String message,
java.lang.String uri, int lineNumber,
int columnNumber, java.lang.Exception e) Create a new CSSParseException with an embedded exception. |
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. |
java.lang.String |
getURI()
Get the URI of the document where the exception occurred. |
Methods inherited from class org.w3c.css.sac.CSSException |
getCode,
getException,
getMessage |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, printStackTrace,
printStackTrace, printStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify,
notifyAll, wait, wait, wait |
Constructor Detail |
public CSSParseException(java.lang.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.Locator
,
Parser.setLocale(java.util.Locale)
public CSSParseException(java.lang.String message, Locator locator, java.lang.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 exceptionLocator
,
Parser.setLocale(java.util.Locale)
public CSSParseException(java.lang.String message, java.lang.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.Parser.setLocale(java.util.Locale)
public CSSParseException(java.lang.String message, java.lang.String uri, int lineNumber, int columnNumber, java.lang.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.Parser.setLocale(java.util.Locale)
Method Detail |
public int getColumnNumber()
The first column in a line is position 1.
Locator.getColumnNumber()
public int getLineNumber()
Locator.getLineNumber()
public java.lang.String getURI()
The URI will be resolved fully.
Locator.getURI()
|
||||||||
PREV CLASS NEXT CLASS | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright © 2002 W3C® (MIT, INRIA, Keio), All Rights Reserved. W3C liability, trademark, document use and software licensing rules apply. Your interactions with this site are in accordance with our public and Member privacy statements.