You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
292B

  1. class EngineIOError(Exception):
  2. pass
  3. class ContentTooLongError(EngineIOError):
  4. pass
  5. class UnknownPacketError(EngineIOError):
  6. pass
  7. class QueueEmpty(EngineIOError):
  8. pass
  9. class SocketIsClosedError(EngineIOError):
  10. pass
  11. class ConnectionError(EngineIOError):
  12. pass