public static void main(String[] args) { Thread.setUncaughtExceptionHandler(new UncaughtExceptionHandler() { @Override public void uncaughtException(Thread t, Throwable e) { ErrorLogging.log(e.getStackTrace(), e.getMessage()); } }); getInstance(); }