Package | Description |
---|---|
ej.bon | |
java.lang |
Modifier and Type | Method and Description |
---|---|
static Thread.UncaughtExceptionHandler |
Timer.getDefaultUncaughtExceptionHandler()
Gets the default registered handler for uncaught exceptions.
|
Thread.UncaughtExceptionHandler |
Timer.getUncaughtExceptionHandler()
Gets the specific handler for uncaught exceptions on this
Timer
instance. |
Modifier and Type | Method and Description |
---|---|
static void |
Timer.setDefaultUncaughtExceptionHandler(Thread.UncaughtExceptionHandler h)
Sets the default handler for uncaught exceptions.
|
void |
Timer.setUncaughtExceptionHandler(Thread.UncaughtExceptionHandler h)
Sets the specific handler for uncaught exceptions on this
Timer
instance. |
Modifier and Type | Method and Description |
---|---|
static Thread.UncaughtExceptionHandler |
Thread.getDefaultUncaughtExceptionHandler()
Returns the default handler invoked when a thread abruptly terminates due to
an uncaught exception.
|
Thread.UncaughtExceptionHandler |
Thread.getUncaughtExceptionHandler()
Returns the handler invoked when this thread abruptly terminates due to an
uncaught exception.
|
Modifier and Type | Method and Description |
---|---|
static void |
Thread.setDefaultUncaughtExceptionHandler(Thread.UncaughtExceptionHandler eh)
Set the default handler invoked when a thread abruptly terminates due to an uncaught exception,
and no other handler has been defined for that thread.
|
void |
Thread.setUncaughtExceptionHandler(Thread.UncaughtExceptionHandler eh)
Set the handler invoked when this thread abruptly terminates due to an uncaught exception.
|