mirror of https://github.com/morpheus65535/bazarr
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
|