airflow.providers.standard.exceptions¶
Exceptions used by Standard Provider.
Exceptions¶
Base exception for all ExternalTaskSensor related errors. |
|
Raised when the external DAG does not exist. |
|
Raised when the external DAG was deleted. |
|
Raised when the external task does not exist. |
|
Raised when the external task group does not exist. |
|
Raised when the external task failed. |
|
Raised when the external task group failed. |
|
Raised when the external DAG failed. |
|
Raised when duplicate states are provided across allowed, skipped and failed states. |
Module Contents¶
- exception airflow.providers.standard.exceptions.AirflowExternalTaskSensorException[source]¶
Bases:
airflow.exceptions.AirflowException
Base exception for all ExternalTaskSensor related errors.
- exception airflow.providers.standard.exceptions.ExternalDagNotFoundError[source]¶
Bases:
AirflowExternalTaskSensorException
Raised when the external DAG does not exist.
- exception airflow.providers.standard.exceptions.ExternalDagDeletedError[source]¶
Bases:
AirflowExternalTaskSensorException
Raised when the external DAG was deleted.
- exception airflow.providers.standard.exceptions.ExternalTaskNotFoundError[source]¶
Bases:
AirflowExternalTaskSensorException
Raised when the external task does not exist.
- exception airflow.providers.standard.exceptions.ExternalTaskGroupNotFoundError[source]¶
Bases:
AirflowExternalTaskSensorException
Raised when the external task group does not exist.
- exception airflow.providers.standard.exceptions.ExternalTaskFailedError[source]¶
Bases:
AirflowExternalTaskSensorException
Raised when the external task failed.
- exception airflow.providers.standard.exceptions.ExternalTaskGroupFailedError[source]¶
Bases:
AirflowExternalTaskSensorException
Raised when the external task group failed.
- exception airflow.providers.standard.exceptions.ExternalDagFailedError[source]¶
Bases:
AirflowExternalTaskSensorException
Raised when the external DAG failed.
- exception airflow.providers.standard.exceptions.DuplicateStateError[source]¶
Bases:
AirflowExternalTaskSensorException
Raised when duplicate states are provided across allowed, skipped and failed states.