1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 03:24:20 +00:00

Improve documentation of royalnet.exc

This commit is contained in:
Steffo 2022-05-02 05:19:29 +02:00
parent 33ae110679
commit ba0859d58c
Signed by: steffo
GPG key ID: 6965406171929D01

View file

@ -1,10 +1,10 @@
""" """
This module exports the base exceptions used in all :mod:`royalnet` modules. This module exports the exceptions used in :mod:`royalnet`.
""" """
class RoyalnetException(Exception): class RoyalnetException(Exception):
"""An exception raised by a Royalnet module.""" """Base class for all other :mod:`royalnet` exceptions."""
__all__ = ("RoyalnetException",) __all__ = ("RoyalnetException",)