mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-28 10:38:26 +00:00
22 lines
292 B
Python
22 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
|