Interface AsyncUncaughtExceptionHandler
- All Known Implementing Classes:
 SimpleAsyncUncaughtExceptionHandler
- Functional Interface:
 - This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
 
A strategy for handling uncaught exceptions thrown from asynchronous methods.
 
An asynchronous method usually returns a Future
 instance that gives access to the underlying exception. When the method does
 not provide that return type, this handler can be used to manage such
 uncaught exceptions.
- Since:
 - 4.1
 - Author:
 - Stephane Nicoll
 
- 
Method Summary
Modifier and TypeMethodDescriptionvoidhandleUncaughtException(Throwable ex, Method method, @Nullable Object... params) Handle the given uncaught exception thrown from an asynchronous method. 
- 
Method Details
- 
handleUncaughtException
Handle the given uncaught exception thrown from an asynchronous method.- Parameters:
 ex- the exception thrown from the asynchronous methodmethod- the asynchronous methodparams- the parameters used to invoke the method
 
 -