public static interface ThreadHelpers.UncaughtExceptionHandler
This class is analogous to Thread.UncaughtExceptionHandler in J2SE 5.0.
Obviously you cannot use it the same way, e.g. you cannot assign the
handler to the thread so that it is invoked when thread terminates.
However, it can be emulated
.
Modifier and Type | Method and Description |
---|---|
void |
uncaughtException(java.lang.Thread thread,
java.lang.Throwable error)
Notification of the uncaught exception that occurred within specified
thread.
|