Source code for jasmin_arc.exceptions

[docs]class InvalidConfigError(Exception): """ Exception thrown when config file is invalid """
[docs]class ProxyGenerationError(Exception): """ Proxy could not be created from key and certificate """
[docs]class InvalidJobDescription(Exception): """ Job description XML is invalid """
[docs]class JobSubmissionError(Exception): """ Job could not be submitted to any targets """
[docs]class NoTargetsAvailableError(Exception): """ No execution targets could be found to submit jobs to """
[docs]class JobNotFoundError(Exception): """ A job with the given ID could not be found """
[docs]class InputFileError(Exception): """ Input file does not exist or is not a file """