Files
urbanLifeline/dify/api/libs/broadcast_channel/exc.py

13 lines
361 B
Python
Raw Normal View History

2025-12-01 17:21:38 +08:00
class BroadcastChannelError(Exception):
"""`BroadcastChannelError` is the base class for all exceptions related
to `BroadcastChannel`."""
pass
class SubscriptionClosedError(BroadcastChannelError):
"""SubscriptionClosedError means that the subscription has been closed and
methods for consuming messages should not be called."""
pass