mirror of
https://github.com/morpheus65535/bazarr
synced 2025-01-01 04:26:13 +00:00
23 lines
292 B
Python
23 lines
292 B
Python
|
class EngineIOError(Exception):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class ContentTooLongError(EngineIOError):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class UnknownPacketError(EngineIOError):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class QueueEmpty(EngineIOError):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class SocketIsClosedError(EngineIOError):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class ConnectionError(EngineIOError):
|
||
|
pass
|