Skip to content

Commit 6b00162

Browse files
authored
Merge branch 'main' into feature/chroma-memory-service
2 parents bed411c + 8c0bd20 commit 6b00162

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/google/adk/errors/session_not_found_error.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,11 @@
1414

1515
from __future__ import annotations
1616

17-
from .not_found_error import NotFoundError
1817

19-
20-
class SessionNotFoundError(ValueError, NotFoundError):
18+
class SessionNotFoundError(ValueError):
2119
"""Raised when a session cannot be found.
2220
23-
Inherits from both ValueError (for backward compatibility) and NotFoundError
24-
(for semantic consistency with the project's error hierarchy).
21+
Inherits from ValueError (for backward compatibility).
2522
"""
2623

2724
def __init__(self, message="Session not found."):

0 commit comments

Comments
 (0)