16 lines
469 B
Java
16 lines
469 B
Java
|
//: concurrency/SettingDefaultHandler.java
|
|||
|
// <20>2015 MindView LLC: see Copyright.txt
|
|||
|
// {TimeOutDuringTesting}
|
|||
|
import java.util.concurrent.*;
|
|||
|
|
|||
|
public class SettingDefaultHandler {
|
|||
|
public static void main(String[] args) {
|
|||
|
Thread.setDefaultUncaughtExceptionHandler(
|
|||
|
new MyUncaughtExceptionHandler());
|
|||
|
ExecutorService exec = Executors.newCachedThreadPool();
|
|||
|
exec.execute(new ExceptionThread());
|
|||
|
}
|
|||
|
} /* Output:
|
|||
|
caught java.lang.RuntimeException
|
|||
|
*///:~
|