If I invoke the run() method on a Thread and the run() method throws an uncaught Exception what would be the outcome ?
Who catches this Exception ? Does it even get caught ?
|
If I invoke the run() method on a Thread and the run() method throws an uncaught Exception what would be the outcome ? Who catches this Exception ? Does it even get caught ? |
|||||
|
|
If there is an exception handler installed for the ThreadGroup, the JVM passes the exception to it. If it's an AWT thread, you can install an event handler for otherwise unhandled exceptions. Otherwise the JVM handles it. Example of a thread group with a custom handler and how to use it:
Example of using an AWT exception handler:
|
|||||||||
|
|
If you've submitted the Runnable to an ExecutorService you can catch the Exception as wrapped inside a ExecutionException. (Highly recommended over simply calling run()) |
|||
|
|
|
It can if you assign it to a ThreadGroup that implements the [uncaughtException][1] method. [1]: http://java.sun.com/j2se/1.4.2/docs/api/java/lang/ThreadGroup.html#uncaughtException(java.lang.Thread, java.lang.Throwable) |
|||
|
|