prefect_dbt.cloud.exceptions
DbtCloudException
Bases: Exception
Base class for dbt Cloud exceptions
Source code in prefect_dbt/cloud/exceptions.py
1 2 |
|
DbtCloudGetJobFailed
Bases: DbtCloudException
Raised when unable to retrieve dbt Cloud job.
Source code in prefect_dbt/cloud/exceptions.py
36 37 |
|
DbtCloudGetRunArtifactFailed
Bases: DbtCloudException
Raised when unable to get a dbt Cloud run artifact
Source code in prefect_dbt/cloud/exceptions.py
13 14 |
|
DbtCloudGetRunFailed
Bases: DbtCloudException
Raised when unable to retrieve dbt Cloud run
Source code in prefect_dbt/cloud/exceptions.py
5 6 |
|
DbtCloudJobRunCancelled
Bases: DbtCloudException
Raised when a triggered job run is cancelled
Source code in prefect_dbt/cloud/exceptions.py
21 22 |
|
DbtCloudJobRunFailed
Bases: DbtCloudException
Raised when a triggered job run fails
Source code in prefect_dbt/cloud/exceptions.py
17 18 |
|
DbtCloudJobRunIncomplete
Bases: DbtCloudException
Raised when a triggered job run is not complete.
Source code in prefect_dbt/cloud/exceptions.py
40 41 |
|
DbtCloudJobRunTimedOut
Bases: DbtCloudException
Raised when a triggered job run does not complete in the configured max wait seconds
Source code in prefect_dbt/cloud/exceptions.py
25 26 27 28 29 |
|
DbtCloudJobRunTriggerFailed
Bases: DbtCloudException
Raised when a dbt Cloud job trigger fails.
Source code in prefect_dbt/cloud/exceptions.py
32 33 |
|
DbtCloudListRunArtifactsFailed
Bases: DbtCloudException
Raised when unable to list dbt Cloud run artifacts
Source code in prefect_dbt/cloud/exceptions.py
9 10 |
|