Home
last modified time | relevance | path

Searched refs:BatchError (Results 1 – 8 of 8) sorted by relevance

/external/python/apitools/apitools/base/py/
Dbatch.py310 raise exceptions.BatchError(
313 raise exceptions.BatchError(
465 raise exceptions.BatchError(
Dexceptions.py130 class BatchError(Error): class
Dbatch_test.py375 self.assertRaises(exceptions.BatchError,
528 exceptions.BatchError, batch_request._Execute, None)
/external/python/google-api-python-client/googleapiclient/
Dhttp.py61 from googleapiclient.errors import BatchError
1262 raise BatchError("Invalid value for Content-ID: %s" % header)
1264 raise BatchError("Invalid value for Content-ID: %s" % header)
1389 raise BatchError(
1396 raise BatchError("Media requests cannot be used in a batch request.")
1464 raise BatchError(
Derrors.py144 class BatchError(HttpError): class
/external/python/google-api-python-client/tests/
Dtest_http.py45 from googleapiclient.errors import BatchError
1129 self.assertRaises(BatchError, batch._header_to_id, "[foo+x]")
1130 self.assertRaises(BatchError, batch._header_to_id, "foo+1")
1131 self.assertRaises(BatchError, batch._header_to_id, "<foo>")
1240 self.assertRaises(BatchError, batch.add, self.request1)
1247 with self.assertRaises(BatchError) as batch_error:
1298 except BatchError as e:
1327 except BatchError as e:
/external/python/google-api-python-client/docs/epy/
Dapi-objects.txt156 googleapiclient.errors.BatchError googleapiclient.errors.BatchError-class.html
157 googleapiclient.errors.BatchError.__str__ googleapiclient.errors.BatchError-class.html#__str__
158 googleapiclient.errors.BatchError.__repr__ googleapiclient.errors.BatchError-class.html#__repr__
159 googleapiclient.errors.BatchError.__init__ googleapiclient.errors.BatchError-class.html#__init__
/external/python/google-api-python-client/
DCHANGELOG256 - Fix unprintable representation of BatchError with default constructor. (#165)