Interface ICSSInterpretErrorHandler
- All Known Implementing Classes:
DoNothingCSSInterpretErrorHandler,LoggingCSSInterpretErrorHandler
public interface ICSSInterpretErrorHandler
Special CSS error handler that is invoked during interpretation of a parsed
CSS.
- Since:
- 5.0.2
- Author:
- Philip Helger
-
Method Summary
Modifier and TypeMethodDescriptionvoidonCSSInterpretationError(String sMessage) Called when an interpretation error occurs.voidonCSSInterpretationWarning(String sMessage) Called when an interpretation error or warning occurs.
-
Method Details
-
onCSSInterpretationWarning
Called when an interpretation error or warning occurs.- Parameters:
sMessage- The message text of the error.
-
onCSSInterpretationError
Called when an interpretation error occurs.- Parameters:
sMessage- The message text of the error.
-