changed error Message numberOfParticipants.

This commit is contained in:
schrom01 2022-05-13 16:51:17 +02:00
parent 5f6193d8b2
commit a78d1d9de7
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ public class TournamentDecorator implements IsObservable{
factoryDecorator.clearMessage(true); factoryDecorator.clearMessage(true);
} catch (Tournament.NumberOfParticipantInvalidException e) { } catch (Tournament.NumberOfParticipantInvalidException e) {
e.printStackTrace(); e.printStackTrace();
factoryDecorator.printMessageToFooter("Anzahl Teilnehmer nicht vielfaches von 2",true); factoryDecorator.printMessageToFooter("Anzahl Teilnehmer muss eine Potenz von 2 sein.",true);
} }
informListener(); informListener();
} }