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 TypeMethodDescriptionvoid
error
(CSSParseException exception) Error.void
fatalError
(CSSParseException exception) Fatal error.void
warning
(CSSParseException exception) Warning.
-
Method Details
-
warning
Warning.- Parameters:
exception
- theCSSParseException
that is the reason for the warning.- Throws:
CSSException
- in case of errorCSSException
- if any.
-
error
Error.- Parameters:
exception
- theCSSParseException
that is the reason for the error.- Throws:
CSSException
- in case of errorCSSException
- if any.
-
fatalError
Fatal error.- Parameters:
exception
- theCSSParseException
that is the reason for the error.- Throws:
CSSException
- in case of errorCSSException
- if any.
-