Package com.google.javascript.jscomp
Interface ErrorHandler
-
- All Known Subinterfaces:
ErrorManager
- All Known Implementing Classes:
AllowlistWarningsGuard.AllowlistBuilder,BasicErrorManager,BlackHoleErrorManager,Compiler,FixingErrorManager,LoggerErrorManager,PrintStreamErrorManager,SortingErrorManager,ThreadSafeDelegatingErrorManager
public interface ErrorHandlerThe error handler is any generic sink for warnings and errors, after they've passed through any filteringWarningsGuards.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidreport(CheckLevel level, JSError error)
-
-
-
Method Detail
-
report
void report(CheckLevel level, JSError error)
- Parameters:
level- the reporting levelerror- the error to report
-
-