public static interface Errors.Plugins
Modifier and Type | Interface and Description |
---|---|
static interface |
Errors.Plugins.Dialog
Plugin interface for
Errors.dialog . |
static interface |
Errors.Plugins.Log
Plugin interface for
Errors.log . |
static class |
Errors.Plugins.OnErrorThrowAssertion
An implementation of all of the
Errors plugins which throws an AssertionError
on any exception. |
Modifier and Type | Method and Description |
---|---|
static void |
defaultDialog(Throwable error)
Default behavior of
Errors.dialog is @{code JOptionPane.showMessageDialog} without a parent. |
static void |
defaultLog(Throwable error)
Default behavior of
Errors.log is @{code Throwable.printStackTrace()}. |
static void defaultLog(Throwable error)
Errors.log
is @{code Throwable.printStackTrace()}.static void defaultDialog(Throwable error)
Errors.dialog
is @{code JOptionPane.showMessageDialog} without a parent.