Source code for ralph.agents.executor_error
"""Executor exception types."""
from __future__ import annotations
__all__ = ["ExecutorError"]
[docs]
class ExecutorError(Exception):
"""Raised when an executor encounters an unrecoverable failure."""