Package org.htmlunit.cssparser.parser
Interface CSSErrorHandler
-
- All Known Implementing Classes:
HandlerBase,ThrowCssExceptionErrorHandler
public interface CSSErrorHandlerInterface for CSS parser error handlers.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiderror(CSSParseException exception)Error.voidfatalError(CSSParseException exception)Fatal error.voidwarning(CSSParseException exception)Warning.
-
-
-
Method Detail
-
warning
void warning(CSSParseException exception) throws CSSException
Warning.- Parameters:
exception- theCSSParseExceptionthat is the reason for the warning.- Throws:
CSSException- in case of error
-
error
void error(CSSParseException exception) throws CSSException
Error.- Parameters:
exception- theCSSParseExceptionthat is the reason for the error.- Throws:
CSSException- in case of error
-
fatalError
void fatalError(CSSParseException exception) throws CSSException
Fatal error.- Parameters:
exception- theCSSParseExceptionthat is the reason for the error.- Throws:
CSSException- in case of error
-
-