We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bed411c + 8c0bd20 commit 6b00162Copy full SHA for 6b00162
src/google/adk/errors/session_not_found_error.py
@@ -14,14 +14,11 @@
14
15
from __future__ import annotations
16
17
-from .not_found_error import NotFoundError
18
19
-
20
-class SessionNotFoundError(ValueError, NotFoundError):
+class SessionNotFoundError(ValueError):
21
"""Raised when a session cannot be found.
22
23
- Inherits from both ValueError (for backward compatibility) and NotFoundError
24
- (for semantic consistency with the project's error hierarchy).
+ Inherits from ValueError (for backward compatibility).
25
"""
26
27
def __init__(self, message="Session not found."):
0 commit comments