feat(user-sessions): add custom exceptions for game logic and enhance user session interaction

This commit is contained in:
2025-10-31 17:37:58 +01:00
committed by Janis
parent 992dd8f11c
commit aeeb8c13e9
8 changed files with 134 additions and 17 deletions

View File

@@ -1,6 +1,6 @@
package exceptions;
public class NotInThisGameException extends RuntimeException {
public class NotInThisGameException extends GameException {
public NotInThisGameException(String message) {
super(message);
}