Source code for varats.utils.exceptions

#!/usr/bin/env python3
"""This module contains custom exceptions."""


[docs]class ProcessTerminatedError(Exception): """Raised if a process was terminated."""
[docs]class ConfigurationLookupError(Exception): """Raised if a paper config could not be found."""
[docs]class ConfigurationMapConfigIDMissmatch(Exception): """Raised if the config ID parsed from a file did not match the actual created ID, this happens when IDs are missing in the file."""