exceptions.py 424 B

12345678910111213141516171819202122
  1. """
  2. pywebio.exceptions
  3. ~~~~~~~~~~~~~~~~~~~
  4. This module contains the set of PyWebIO's exceptions.
  5. """
  6. class SessionException(Exception):
  7. """Base class for PyWebIO session related exceptions"""
  8. class SessionClosedException(SessionException):
  9. """The session has been closed abnormally"""
  10. class SessionNotFoundException(SessionException):
  11. """Session not found"""
  12. class PyWebIOWarning(UserWarning):
  13. pass