Package org.htmlunit.cssparser.parser
Interface CSSErrorHandler
- All Known Implementing Classes:
HandlerBase,ThrowCssExceptionErrorHandler
public interface CSSErrorHandler
Interface for CSS parser error handlers.
- Author:
- Ronald Brill
-
Method Summary
Modifier and TypeMethodDescriptionvoiderror(CSSParseException exception) Error.voidfatalError(CSSParseException exception) Fatal error.voidwarning(CSSParseException exception) Warning.
-
Method Details
-
warning
Warning.- Parameters:
exception- theCSSParseExceptionthat is the reason for the warning.- Throws:
CSSException- in case of errorCSSException- if any.
-
error
Error.- Parameters:
exception- theCSSParseExceptionthat is the reason for the error.- Throws:
CSSException- in case of errorCSSException- if any.
-
fatalError
Fatal error.- Parameters:
exception- theCSSParseExceptionthat is the reason for the error.- Throws:
CSSException- in case of errorCSSException- if any.
-