pywebio.exceptions 源代码

"""
pywebio.exceptions
~~~~~~~~~~~~~~~~~~~

This module contains the set of PyWebIO's exceptions.
"""


[文档]class SessionException(Exception): """Base class for PyWebIO session related exceptions"""
[文档]class SessionClosedException(SessionException): """The session has been closed abnormally"""
[文档]class SessionNotFoundException(SessionException): """Session not found"""
[文档]class PyWebIOWarning(UserWarning): pass