Handle expired Keycloak session with user-friendly error message (#12168)

Co-authored-by: openhands <openhands@all-hands.dev>
This commit is contained in:
Xingyao Wang
2026-01-05 10:04:36 -05:00
committed by GitHub
parent 4a82768e6d
commit 5744f6602b
13 changed files with 264 additions and 9 deletions

View File

@@ -50,3 +50,9 @@ class LLMAuthenticationError(ValueError):
"""Raised when there is an issue with LLM authentication."""
pass
class SessionExpiredError(ValueError):
"""Raised when the user's authentication session has expired."""
pass