1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-18 07:52:14 +01:00

Moved last showError() method for Base to BaseNoGui.

This commit is contained in:
Claudio Indellicati 2014-08-25 12:34:50 +02:00 committed by Cristian Maglie
parent 83c61376e0
commit 998142d16d

View File

@ -569,6 +569,10 @@ public class BaseNoGui {
return res;
}
static public void showError(String title, String message, int exit_code) {
showError(title, message, null, exit_code);
}
static public void showError(String title, String message, Throwable e) {
notifier.showError(title, message, e, 1);
}