mirror of
https://github.com/arduino/Arduino.git
synced 2025-02-02 22:52:12 +01:00
12 lines
246 B
Java
12 lines
246 B
Java
|
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);
|
||
|
}
|
||
|
|
||
|
}
|