mirror of
https://github.com/langgenius/dify.git
synced 2025-11-26 01:43:25 +00:00
13 lines
361 B
Python
13 lines
361 B
Python
|
|
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
|