10 lines
298 B
Python
10 lines
298 B
Python
|
|
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}")
|