google.auth.exceptions module¶
Exceptions used in the google.auth package.
- exception GoogleAuthError[source]¶
Bases:
Exception
Base class for all google.auth errors.
- with_traceback()¶
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception TransportError[source]¶
Bases:
GoogleAuthError
Used to indicate an error occurred during an HTTP request.
- with_traceback()¶
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception RefreshError[source]¶
Bases:
GoogleAuthError
Used to indicate that an refreshing the credentials’ access token failed.
- with_traceback()¶
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception UserAccessTokenError[source]¶
Bases:
GoogleAuthError
Used to indicate
gcloud auth print-access-token
command failed.- with_traceback()¶
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception DefaultCredentialsError[source]¶
Bases:
GoogleAuthError
Used to indicate that acquiring default credentials failed.
- with_traceback()¶
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception MutualTLSChannelError[source]¶
Bases:
GoogleAuthError
Used to indicate that mutual TLS channel creation is failed, or mutual TLS channel credentials is missing or invalid.
- with_traceback()¶
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception ClientCertError[source]¶
Bases:
GoogleAuthError
Used to indicate that client certificate is missing or invalid.
- with_traceback()¶
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception OAuthError[source]¶
Bases:
GoogleAuthError
Used to indicate an error occurred during an OAuth related HTTP request.
- with_traceback()¶
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception ReauthFailError(message=None)[source]¶
Bases:
RefreshError
An exception for when reauth failed.
- with_traceback()¶
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception ReauthSamlChallengeFailError(message=None)[source]¶
Bases:
ReauthFailError
An exception for SAML reauth challenge failures.
- with_traceback()¶
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.