diff --git a/sth-backend/src/main/java/hdm/mi/sthbackend/exeptions/WinnerNotDeterminedException.java b/sth-backend/src/main/java/hdm/mi/sthbackend/exeptions/WinnerNotDeterminedException.java index 3c15f2e3641dfdf3af0b9b77483addd4ac1f4390..bfab2d28fb66e8b86d0a6a110a320840fa57d3cd 100644 --- a/sth-backend/src/main/java/hdm/mi/sthbackend/exeptions/WinnerNotDeterminedException.java +++ b/sth-backend/src/main/java/hdm/mi/sthbackend/exeptions/WinnerNotDeterminedException.java @@ -3,7 +3,7 @@ package hdm.mi.sthbackend.exeptions; import java.util.UUID; public class WinnerNotDeterminedException extends Exception{ - public WinnerNotDeterminedException(UUID match, UUID tournamentId) { - super(String.format("Winner not determined for Match %s in Tournament %s ", match.toString(), tournamentId.toString())); + public WinnerNotDeterminedException(UUID match) { + super(String.format("Winner not determined for Match %s", match.toString())); } } \ No newline at end of file