From ba0859d58c74e4ea279e4569e01f7eea56bcc5c2 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Mon, 2 May 2022 05:19:29 +0200 Subject: [PATCH] Improve documentation of `royalnet.exc` --- royalnet/exc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/royalnet/exc.py b/royalnet/exc.py index b1106d9a..8490a1cd 100644 --- a/royalnet/exc.py +++ b/royalnet/exc.py @@ -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): - """An exception raised by a Royalnet module.""" + """Base class for all other :mod:`royalnet` exceptions.""" __all__ = ("RoyalnetException",)