Package java.lang
Interface Thread.UncaughtExceptionHandler
-
- Enclosing class:
- Thread
public static interface Thread.UncaughtExceptionHandlerInterface for handlers invoked when aThreadabruptly terminates due to an uncaught exception.When a thread is about to terminate due to an uncaught exception the Java Virtual Machine will query the thread for its
UncaughtExceptionHandlerusingThread.getUncaughtExceptionHandler()and will invoke the handler'suncaughtExceptionmethod, passing the thread and the exception as arguments. default uncaught exception handler.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiduncaughtException(Thread t, Throwable e)Method invoked when the given thread terminates due to the given uncaught exception.
-