This commit is contained in:
2024-01-07 19:20:09 +01:00
parent 671bd13cd8
commit 28749f0526
13 changed files with 334 additions and 2 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