Files
custom-debian-iso/core/exceptions.py
2022-08-01 13:01:32 +02:00

8 lines
183 B
Python

"""Some general exception classes used throughout the program."""
class MissingDependencyError(RuntimeError):
"""Raised if a required system dependency is missing."""
pass