feat: wip, v2

This commit is contained in:
2024-01-16 21:07:39 +01:00
parent a71d8bfad8
commit 21d4ad64f3
8 changed files with 289 additions and 26 deletions

View File

@@ -0,0 +1,7 @@
class ConversationLockedException(Exception):
"""Raised when there is already an ongoing conversation."""
def __init__(self):
super().__init__(
"There is already an ongoing conversation. Please wait until it is finished."
)

View File

@@ -0,0 +1 @@
from .LockedConversationException import ConversationLockedException