Source code for council.runners.errrors

[docs]class RunnerError(Exception): """ An error occurred in a :class:`.RunnerBase` """ pass
[docs]class RunnerTimeoutError(RunnerError): """ Timeout during the execution of a :class:`.RunnerBase` """ pass
[docs]class RunnerSkillError(RunnerError): """ An error occurred during the execution of a :class:`.SkillBase` """ pass
[docs]class RunnerPredicateError(RunnerError): """ An error occurred during the execution of a :class:`.RunnerPredicate` """ pass
[docs]class RunnerGeneratorError(RunnerError): """ An error occurred during the execution of a :class:`.RunnerGenerator` """ pass