1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/royalherald/errors.py

19 lines
553 B
Python
Raw Normal View History

2019-10-15 09:07:04 +00:00
class HeraldError(Exception):
"""A generic :py:mod:`royalherald` error."""
class LinkError(HeraldError):
"""An error for something that happened in a :py:class:`Link`."""
class ServerError(HeraldError):
"""An error for something that happened in a :py:class:`Server`."""
class ConnectionClosedError(LinkError):
"""The :py:class:`Link`'s connection was closed unexpectedly. The link can't be used anymore."""
class InvalidServerResponseError(LinkError):
"""The :py:class:`Server` sent invalid data to the :py:class:`Link`."""