Skip to content

prefect_airbyte.exceptions

Exceptions to raise indicating issues throughout prefect_airbyte

Classes

AirbyeConnectionDeprecatedException

Bases: Exception

Raises when a specified Airbyte connection is deprecated.

Source code in prefect_airbyte/exceptions.py
40
41
42
43
class AirbyeConnectionDeprecatedException(Exception):
    """
    Raises when a specified Airbyte connection is deprecated.
    """

AirbyteConnectionInactiveException

Bases: Exception

Raises when a specified Airbyte connection is inactive.

Source code in prefect_airbyte/exceptions.py
34
35
36
37
class AirbyteConnectionInactiveException(Exception):
    """
    Raises when a specified Airbyte connection is inactive.
    """

AirbyteExportConfigurationFailed

Bases: Exception

Raises when an Airbyte configuration export fails.

Source code in prefect_airbyte/exceptions.py
28
29
30
31
class AirbyteExportConfigurationFailed(Exception):
    """
    Raises when an Airbyte configuration export fails.
    """

AirbyteServerNotHealthyException

Bases: Exception

Raises when a specified Airbyte instance returns an unhealthy response.

Source code in prefect_airbyte/exceptions.py
10
11
12
13
class AirbyteServerNotHealthyException(Exception):
    """
    Raises when a specified Airbyte instance returns an unhealthy response.
    """

AirbyteSyncJobFailed

Bases: Exception

Raises when a specified Airbyte Sync Job fails.

Source code in prefect_airbyte/exceptions.py
22
23
24
25
class AirbyteSyncJobFailed(Exception):
    """
    Raises when a specified Airbyte Sync Job fails.
    """

ConnectionNotFoundException

Bases: Exception

Raises when a requested Airbyte connection cannot be found.

Source code in prefect_airbyte/exceptions.py
4
5
6
7
class ConnectionNotFoundException(Exception):
    """
    Raises when a requested Airbyte connection cannot be found.
    """

JobNotFoundException

Bases: Exception

Raises when a requested Airbyte job cannot be found.

Source code in prefect_airbyte/exceptions.py
16
17
18
19
class JobNotFoundException(Exception):
    """
    Raises when a requested Airbyte job cannot be found.
    """