from __future__ import annotations from yuxi.channel.domain.exception.channel_error import ChannelError class SessionNotFoundError(ChannelError): def __init__(self, thread_id: str): self.thread_id = thread_id super().__init__(f"Session not found for thread_id: {thread_id}")