Home
last modified time | relevance | path

Searched refs:HttpAccessTokenRefreshError (Results 1 – 6 of 6) sorted by relevance

/external/python/apitools/apitools/base/py/
Dhttp_wrapper_test.py30 from oauth2client.client import HttpAccessTokenRefreshError
71 exception_arg = HttpAccessTokenRefreshError(status=503)
86 exception_arg = HttpAccessTokenRefreshError(status=200)
94 with self.assertRaises(HttpAccessTokenRefreshError):
Dhttp_wrapper.py39 from oauth2client.client import HttpAccessTokenRefreshError as TokenRefreshError # noqa
/external/python/oauth2client/oauth2client/contrib/
Dgce.py138 raise client.HttpAccessTokenRefreshError(str(e))
/external/python/oauth2client/tests/contrib/
Dtest_gce.py98 with self.assertRaises(client.HttpAccessTokenRefreshError):
/external/python/oauth2client/oauth2client/
Dclient.py146 class HttpAccessTokenRefreshError(AccessTokenRefreshError): class
149 super(HttpAccessTokenRefreshError, self).__init__(*args)
834 raise HttpAccessTokenRefreshError(error_msg, status=resp.status)
/external/python/oauth2client/tests/
Dtest_client.py942 client.HttpAccessTokenRefreshError) as exc_manager:
1235 client.HttpAccessTokenRefreshError) as exc_manager: