7265b6aceb
Partway through update
14 lines
416 B
Java
14 lines
416 B
Java
//: concurrency/SettingDefaultHandler.java
|
|
// {RunByHand}
|
|
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
|
|
*///:~ |