Class SimpleAsyncUncaughtExceptionHandler
java.lang.Object
org.springframework.aop.interceptor.SimpleAsyncUncaughtExceptionHandler
- All Implemented Interfaces:
- AsyncUncaughtExceptionHandler
public class SimpleAsyncUncaughtExceptionHandler
extends Object
implements AsyncUncaughtExceptionHandler
A default 
AsyncUncaughtExceptionHandler that simply logs the exception.- Since:
- 4.1
- Author:
- Stephane Nicoll, Juergen Hoeller
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidhandleUncaughtException(Throwable ex, Method method, @Nullable Object... params) Handle the given uncaught exception thrown from an asynchronous method.
- 
Constructor Details- 
SimpleAsyncUncaughtExceptionHandlerpublic SimpleAsyncUncaughtExceptionHandler()
 
- 
- 
Method Details- 
handleUncaughtExceptionDescription copied from interface:AsyncUncaughtExceptionHandlerHandle the given uncaught exception thrown from an asynchronous method.- Specified by:
- handleUncaughtExceptionin interface- AsyncUncaughtExceptionHandler
- Parameters:
- ex- the exception thrown from the asynchronous method
- method- the asynchronous method
- params- the parameters used to invoke the method
 
 
-