Clarify what RepositoryError stands for

Signed-off-by: Martin Vrachev <mvrachev@vmware.com>
This commit is contained in:
Martin Vrachev 2022-01-12 18:08:46 +02:00
parent 15ee1d8457
commit 199b91df3c

View file

@ -12,7 +12,9 @@
class RepositoryError(Exception):
"""An error with a repository's state, such as a missing file."""
"""An error with a repository's state, such as a missing file.
It covers all exceptions that come from the repository side when
looking from the perspective of users of metadata API or ngclient."""
class UnsignedMetadataError(RepositoryError):