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
1 changed files with 4 additions and 0 deletions

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);
}