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:
google.auth.exceptions.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:
google.auth.exceptions.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
DefaultCredentialsError
[source]¶ Bases:
google.auth.exceptions.GoogleAuthError
Used to indicate that acquiring default credentials failed.
-
with_traceback
()¶ Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
-