mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-24 13:52:14 +01:00
10 lines
221 B
Java
10 lines
221 B
Java
|
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);
|
||
|
|
||
|
}
|