8 lines
183 B
Python
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
|