Skip to content

Commit

Permalink
Keine Fehlermeldung bei AnfangsbestandNeu Dialog Abbruch (#304)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannMaierhofer authored Aug 25, 2024
1 parent 1f1a367 commit daaf2f4
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,17 +54,14 @@ public void handleAction(Object context) throws ApplicationException
context = d.open();
if (context == null)
{
GUI.getStatusBar().setErrorText(
"Kein Konto ausgewählt. Vorgang abgebrochen.");
return;
}
k = (Konto) context;
anf.setKonto(k);
}
catch (OperationCanceledException oce)
{
GUI.getStatusBar().setErrorText("Vorgang abgebrochen");
return;
throw oce;
}
catch (Exception e)
{
Expand Down

0 comments on commit daaf2f4

Please sign in to comment.