Interface BugReportQueue.BugReportHandler
-
- Enclosing class:
- BugReportQueue
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface BugReportQueue.BugReportHandler
Class that handles reporting a bug to the user.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BugReportQueue.SuppressionModehandle(ReportedException e, int exceptionCounter)Handle the bug report for a given exception
-
-
-
Method Detail
-
handle
BugReportQueue.SuppressionMode handle(ReportedException e, int exceptionCounter)
Handle the bug report for a given exception- Parameters:
e- The exception to displayexceptionCounter- A counter of how many exceptions have already been worked on- Returns:
- The new suppression status
-
-