feat(user-sessions): enhance game lobby management with user session handling and game full exception

This commit is contained in:
2025-11-01 10:30:37 +01:00
parent aeeb8c13e9
commit 8df3491757
7 changed files with 140 additions and 50 deletions

View File

@@ -0,0 +1,7 @@
package exceptions;
public class GameFullException extends GameException {
public GameFullException(String message) {
super(message);
}
}