added error Message for file reading error

This commit is contained in:
schrom01 2022-05-12 22:45:10 +02:00
parent 3ebf9c5072
commit ddfbb9bbd0
1 changed files with 4 additions and 4 deletions

View File

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