mirror of
https://github.com/EvolutionAPI/evolution-client-python.git
synced 2025-07-13 07:04:49 -06: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
|