// ===== Uncaught Exceptions
public void uncaughtException(final Thread t, final Throwable th) {
// first call custom handler ...
if (isOperable()) reportLog(new ThrowableLogEvt(t, th));
// ... then call default handler
callUncaughtExceptionToDefaultHandler(t, th);
}