PageRenderTime 38ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

/docs/error.rst

https://github.com/eagles125/pyuv
ReStructuredText | 95 lines | 47 code | 48 blank | 0 comment | 0 complexity | f32bfb923b0be23da0d03457930462cb MD5 | raw file
  1. .. _error:
  2. .. currentmodule:: pyuv
  3. ==============================================
  4. :py:mod:`pyuv.error` --- Exception definitions
  5. ==============================================
  6. This module contains the definition of the different exceptions that
  7. are used throughout `puyv`.
  8. .. py:exception:: UVError()
  9. Base exception class. Parent of all other exception classes.
  10. .. py:exception:: ThreadError()
  11. Exception raised by thread module operations.
  12. .. py:exception:: HandleError()
  13. Base exception class. Parent of all other handle exception classes.
  14. .. py:exception:: HandleClosedError()
  15. Exception raised if a handle is already closed and some function is called on it.
  16. .. py:exception:: StreamError()
  17. Base exception class for stream errors.
  18. .. py:exception:: AsyncError()
  19. Exception raised if an error is found when calling ``Async`` handle functions.
  20. .. py:exception:: CheckError()
  21. Exception raised if an error is found when calling ``Check`` handle functions.
  22. .. py:exception:: DNSError()
  23. Exception raised if an error is found when calling ``DNSResolver`` functions.
  24. .. py:exception:: FSError()
  25. Exception raised if an error is found when calling funcions from the :py:mod:`fs` module.
  26. .. py:exception:: FSEventError()
  27. Exception raised if an error is found when calling ``FSEvent`` handle functions.
  28. .. py:exception:: IdleError()
  29. Exception raised if an error is found when calling ``Idle`` handle functions.
  30. .. py:exception:: PipeError()
  31. Exception raised if an error is found when calling ``Pipe`` handle functions.
  32. .. py:exception:: PrepareError()
  33. Exception raised if an error is found when calling ``Prepare`` handle functions.
  34. .. py:exception:: PollError()
  35. Exception raised if an error is found when calling ``Poll`` handle functions.
  36. .. py:exception:: SignalError()
  37. Exception raised if an error is found when calling ``Signal`` handle functions.
  38. .. py:exception:: TCPError()
  39. Exception raised if an error is found when calling ``TCP`` handle functions.
  40. .. py:exception:: TimerError()
  41. Exception raised if an error is found when calling ``Timer`` handle functions.
  42. .. py:exception:: UDPError()
  43. Exception raised if an error is found when calling ``UDP`` handle functions.
  44. .. py:exception:: TTYError()
  45. Exception raised if an error is found when calling ``TTY`` handle functions.
  46. .. py:exception:: ProcessError()
  47. Exception raised if an error is found when calling ``Process`` handle functions.