Interface CSSErrorHandler
- All Known Implementing Classes:
HandlerBase, ThrowCssExceptionErrorHandler
public interface CSSErrorHandler
Interface for CSS parser error handlers.
-
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 error
-
error
Error.- Parameters:
exception- theCSSParseExceptionthat is the reason for the error.- Throws:
CSSException- in case of error
-
fatalError
Fatal error.- Parameters:
exception- theCSSParseExceptionthat is the reason for the error.- Throws:
CSSException- in case of error
-