Develop footer #39

Merged
schrom01 merged 3 commits from develop_footer into main 2022-05-12 23:26:54 +02:00
1 changed files with 4 additions and 4 deletions
Showing only changes of commit ddfbb9bbd0 - Show all commits

View File

@ -51,10 +51,10 @@ public class FactoryDecorator implements IsObservable{
try {
factory.setTournament(fileIO.loadTournament(tournamentFile));
openScheduleView();
} catch (IOException e) {
e.printStackTrace();
} catch (ClassNotFoundException e) {
clearMessage(false);
} catch (IOException | ClassNotFoundException e) {
e.printStackTrace();
printMessageToFooter("Fehler beim lesen der Datei.", true);
} //TODO handle and logging
}