1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-24 13:52:14 +01:00
Arduino/app/src/processing/app/helpers/UserNotifier.java

10 lines
221 B
Java
Raw Normal View History

2014-08-21 19:46:16 +02:00
package processing.app.helpers;
public interface UserNotifier {
public void showError(String title, String message, Throwable e);
public void showError(String title, String message, Throwable e, int exit_code);
}