1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-02-02 22:52:12 +01:00
Arduino/arduino-core/src/processing/app/DefaultUncaughtExceptionHandler.java

12 lines
246 B
Java
Raw Normal View History

package processing.app;
public class DefaultUncaughtExceptionHandler implements Thread.UncaughtExceptionHandler {
@Override
public void uncaughtException(Thread t, Throwable e) {
System.out.println(t);
System.out.println(e);
}
}