Home
last modified time | relevance | path

Searched refs:apitools_exceptions (Results 1 – 5 of 5) sorted by relevance

/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
Dtest_copy_helper_funcs.py17 from apitools.base.py import exceptions as apitools_exceptions unknown
356 exc = apitools_exceptions.HttpError({'status': 503}, None, None)
361 exc = apitools_exceptions.HttpError({'status': 503}, None, None)
366 exc = apitools_exceptions.HttpError({'status': 429}, None, None)
370 exc = apitools_exceptions.HttpError({'status': 410}, None, None)
375 exc = apitools_exceptions.HttpError({'status': 404}, None, None)
380 exc = apitools_exceptions.HttpError({'status': 401}, None, None)
384 exc = apitools_exceptions.TransferError('Aborting transfer')
Dtest_cp.py32 from apitools.base.py import exceptions as apitools_exceptions unknown
118 raise apitools_exceptions.HttpError(
1319 5, apitools_exceptions.BadStatusCodeError,
1340 5, apitools_exceptions.BadStatusCodeError,
/external/chromium-trace/catapult/third_party/gsutil/gslib/
Dgcs_json_api.py30 from apitools.base.py import exceptions as apitools_exceptions unknown
101 TRANSLATABLE_APITOOLS_EXCEPTIONS = (apitools_exceptions.HttpError,
102 apitools_exceptions.StreamExhausted,
103 apitools_exceptions.TransferError,
104 apitools_exceptions.TransferInvalidError)
112 HTTP_TRANSFER_EXCEPTIONS = (apitools_exceptions.TransferRetryError,
113 apitools_exceptions.BadStatusCodeError,
115 apitools_exceptions.RetryAfterError,
116 apitools_exceptions.RequestError,
327 except apitools_exceptions.ResourceUnavailableError, e:
[all …]
Dgcs_json_media.py27 from apitools.base.py import exceptions as apitools_exceptions unknown
518 raise apitools_exceptions.InvalidUserInputError(
D__main__.py62 import apitools.base.py.exceptions as apitools_exceptions namespace
585 except apitools_exceptions.HttpError as e: