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