airflow.providers.fab.www.api_connexion.exceptions

Attributes

doc_link

EXCEPTIONS_LINK_MAP

Exceptions

NotFound

Raise when the object cannot be found.

BadRequest

Raise when the server processes a bad request.

Unauthenticated

Raise when the user is not authenticated.

PermissionDenied

Raise when the user does not have the required permissions.

Conflict

Raise when there is some conflict.

AlreadyExists

Raise when the object already exists.

Unknown

Returns a response body and status code for HTTP 500 exception.

Module Contents

exception airflow.providers.fab.www.api_connexion.exceptions.NotFound(title='Not Found', detail=None, headers=None, **kwargs)[source]

Bases: connexion.ProblemException

Raise when the object cannot be found.

exception airflow.providers.fab.www.api_connexion.exceptions.BadRequest(title='Bad Request', detail=None, headers=None, **kwargs)[source]

Bases: connexion.ProblemException

Raise when the server processes a bad request.

exception airflow.providers.fab.www.api_connexion.exceptions.Unauthenticated(title='Unauthorized', detail=None, headers=None, **kwargs)[source]

Bases: connexion.ProblemException

Raise when the user is not authenticated.

exception airflow.providers.fab.www.api_connexion.exceptions.PermissionDenied(title='Forbidden', detail=None, headers=None, **kwargs)[source]

Bases: connexion.ProblemException

Raise when the user does not have the required permissions.

exception airflow.providers.fab.www.api_connexion.exceptions.Conflict(title='Conflict', detail=None, headers=None, **kwargs)[source]

Bases: connexion.ProblemException

Raise when there is some conflict.

exception airflow.providers.fab.www.api_connexion.exceptions.AlreadyExists(title='Conflict', detail=None, headers=None, **kwargs)[source]

Bases: Conflict

Raise when the object already exists.

exception airflow.providers.fab.www.api_connexion.exceptions.Unknown(title='Internal Server Error', detail=None, headers=None, **kwargs)[source]

Bases: connexion.ProblemException

Returns a response body and status code for HTTP 500 exception.

Was this entry helpful?