mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-23 12:52:13 +01:00
12 lines
240 B
Java
12 lines
240 B
Java
package cc.arduino;
|
|
|
|
public class DefaultUncaughtExceptionHandler implements Thread.UncaughtExceptionHandler {
|
|
|
|
@Override
|
|
public void uncaughtException(Thread t, Throwable e) {
|
|
System.err.println(t);
|
|
e.printStackTrace();
|
|
}
|
|
|
|
}
|