Skip to content
Snippets Groups Projects
Commit b0e7ce03 authored by Jonas's avatar Jonas
Browse files

11.01.2024 - adjust exception #25

parent 79f64be8
No related branches found
No related tags found
1 merge request!7Dev in Main Merge
...@@ -3,7 +3,7 @@ package hdm.mi.sthbackend.exeptions; ...@@ -3,7 +3,7 @@ package hdm.mi.sthbackend.exeptions;
import java.util.UUID; import java.util.UUID;
public class WinnerNotDeterminedException extends Exception{ public class WinnerNotDeterminedException extends Exception{
public WinnerNotDeterminedException(UUID match, UUID tournamentId) { public WinnerNotDeterminedException(UUID match) {
super(String.format("Winner not determined for Match %s in Tournament %s ", match.toString(), tournamentId.toString())); super(String.format("Winner not determined for Match %s", match.toString()));
} }
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment