Home
last modified time | relevance | path

Searched refs:HttpError (Results 1 – 9 of 9) sorted by relevance

/tools/acloud/
Derrors.py39 class HttpError(DriverError): class
44 super(HttpError, self).__init__(message)
60 return HttpError(http_error.resp.status, str(http_error))
63 class ResourceNotFoundError(HttpError):
/tools/acloud/internal/lib/
Dbase_cloud_client.py119 if isinstance(exception, errors.HttpError):
127 list(other_retriable_errors) + [errors.HttpError],
145 if isinstance(exception, gerrors.HttpError):
146 exception = errors.HttpError.CreateFromHttpError(exception)
167 except gerrors.HttpError as e:
Dbase_cloud_client_test.py102 error_1 = errors.HttpError(503, "fake retriable error.")
144 error = errors.HttpError(503, "fake retriable error.")
146 self.assertRaises(errors.HttpError, client.Execute, api_mock)
Dandroid_build_client.py99 except (OSError, apiclient.errors.HttpError) as e:
136 except errors.HttpError as e:
142 raise errors.HttpError(e.code, message=error_msg)
Dandroid_build_client_test.py122 mock_api_request.execute.side_effect = errors.HttpError(503,
125 errors.HttpError,
Dgcompute_client_test.py1438 raise errors.HttpError(412, "resource labels have changed")
1449 error = errors.HttpError(503, "fake retriable error.")
1454 with self.assertRaises(errors.HttpError):
1458 error = errors.HttpError(403, "fake retriable error.")
Dandroid_compute_client.py341 except errors.HttpError as e:
Dgcompute_client.py97 return isinstance(exc, errors.HttpError) and exc.code == 412
1577 except errors.HttpError as e:
Dutils.py569 if (isinstance(exception, errors.HttpError)