feat(user-sessions): implement GameLobby and user session management with exception handling

This commit is contained in:
2025-10-30 09:00:15 +01:00
committed by Janis
parent f4f886727f
commit 76bde997ef
9 changed files with 142 additions and 45 deletions

View File

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