mirror of
https://gitlab.postmarketos.org/postmarketOS/pmbootstrap.git
synced 2025-07-13 03:19:47 +03:00
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.
5 lines
244 B
Python
5 lines
244 B
Python
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
|