Interface ExceptionHandler
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Interface representing an exception handler.
-
Method Summary
Modifier and TypeMethodDescriptionvoidhandleException(@NotNull Throwable t) Handles the provided exception.
-
Method Details
-
handleException
Handles the provided exception.- Parameters:
t- the exception to be handled
-