mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-29 11:06:02 +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
|