Home
last modified time | relevance | path

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

/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
Dexception.py290 class StorageResponseError(BotoServerError): class
296 super(StorageResponseError, self).__init__(status, reason, body)
299 return super(StorageResponseError, self).startElement(
306 return super(StorageResponseError, self).endElement(
310 super(StorageResponseError, self)._cleanupParsedProperties()
315 class S3ResponseError(StorageResponseError):
322 class GSResponseError(StorageResponseError):
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/testcase/
Dintegration_testcase.py29 from boto.exception import StorageResponseError
121 @Retry(StorageResponseError, tries=7, timeout_secs=1)
129 except StorageResponseError, e:
146 except StorageResponseError, e:
242 @Retry(StorageResponseError, tries=7, timeout_secs=1)
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/s3/
Dkeyfile.py30 from boto.exception import StorageResponseError
78 except StorageResponseError as e:
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/s3/
Dmock_storage_service.py292 raise boto.exception.StorageResponseError(404, 'Not Found')
388 raise boto.exception.StorageResponseError(
394 raise boto.exception.StorageResponseError(404, 'NoSuchBucket',
/external/chromium-trace/catapult/third_party/gsutil/gslib/
Dboto_translation.py102 boto.exception.StorageResponseError)
1456 if isinstance(e, boto.exception.StorageResponseError):
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
Dtest_cp.py36 from boto.exception import StorageResponseError
179 @Retry(StorageResponseError, tries=5, timeout_secs=1)