pmb.helpers.exceptions: Introduce (MR 2279)

Initially I thought of putting this in pmb/helpers/other.py, but this
resulted in a circular import, so I thought the easiest way to work
around that was to just create a new file.
This commit is contained in:
Newbyte 2024-03-20 22:56:13 +01:00
parent 89117277d0
commit 19b50a3deb
No known key found for this signature in database
GPG Key ID: 5AE7F5513E0885CB
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class NonBugError(Exception):
"""Exception which originates from a problem not caused by pmbootstrap's code. This
could for example be raised if there is an error in a package pmboostrap is
interacting with in some way."""
pass