Home
last modified time | relevance | path

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

/external/python/apitools/apitools/base/py/
Dbatch.py302 raise exceptions.BatchError(
305 raise exceptions.BatchError(
451 raise exceptions.BatchError(
Dexceptions.py92 class BatchError(Error): class
Dbatch_test.py375 self.assertRaises(exceptions.BatchError,
510 exceptions.BatchError, batch_request._Execute, None)
/external/python/google-api-python-client/tests/
Dtest_http.py44 from googleapiclient.errors import BatchError
1103 self.assertRaises(BatchError, batch._header_to_id, '[foo+x]')
1104 self.assertRaises(BatchError, batch._header_to_id, 'foo+1')
1105 self.assertRaises(BatchError, batch._header_to_id, '<foo>')
1208 self.assertRaises(BatchError, batch.add, self.request1)
1216 with self.assertRaises(BatchError) as batch_error:
1255 except BatchError as e:
1278 except BatchError as e:
/external/python/google-api-python-client/googleapiclient/
Dhttp.py61 from googleapiclient.errors import BatchError
1204 raise BatchError("Invalid value for Content-ID: %s" % header)
1206 raise BatchError("Invalid value for Content-ID: %s" % header)
1329 raise BatchError("Exceeded the maximum calls(%d) in a single batch request."
1334 raise BatchError("Media requests cannot be used in a batch request.")
1400 raise BatchError("Response not in multipart/mixed format.", resp=resp,
Derrors.py123 class BatchError(HttpError): class
/external/python/google-api-python-client/docs/epy/
Dapi-objects.txt135 googleapiclient.errors.BatchError googleapiclient.errors.BatchError-class.html
136 googleapiclient.errors.BatchError.__str__ googleapiclient.errors.BatchError-class.html#__str__
137 googleapiclient.errors.BatchError.__repr__ googleapiclient.errors.BatchError-class.html#__repr__
138 googleapiclient.errors.BatchError.__init__ googleapiclient.errors.BatchError-class.html#__init__
/external/python/google-api-python-client/
DCHANGELOG185 - Fix unprintable representation of BatchError with default constructor. (#165)