Home
last modified time | relevance | path

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

/external/python/apitools/apitools/base/py/
Dexceptions.py45 class CommunicationError(Error): class
50 class HttpError(CommunicationError):
87 class InvalidDataFromServerError(InvalidDataError, CommunicationError):
122 class TransferError(CommunicationError):
137 class RequestError(CommunicationError):
Dcredentials_lib.py225 raise exceptions.CommunicationError(
407 except exceptions.CommunicationError:
Dtransfer.py890 raise exceptions.CommunicationError(
/external/autotest/client/common_lib/cros/
Dgs_cache_client.py66 class CommunicationError(Exception): class
117 raise CommunicationError('Error occurred: rc=%d, cmd=%s' %
122 @retry.retry((CommunicationError, ResponseContentError), timeout_min=3,
163 raise CommunicationError(msg)
Dgs_cache_client_unittest.py69 with self.assertRaises(gs_cache_client.CommunicationError):
92 with self.assertRaises(gs_cache_client.CommunicationError):
155 side_effect=gs_cache_client.CommunicationError()
/external/python/oauth2client/oauth2client/contrib/
Ddevshell.py33 class CommunicationError(Error): class
87 raise CommunicationError('saw no newline in the first 6 bytes')
/external/python/apitools/apitools/gen/
Dutil.py39 class CommunicationError(Error): class
345 raise CommunicationError(
Dgen_client.py47 except exceptions.CommunicationError:
/external/python/oauth2client/tests/contrib/
Dtest_devshell.py97 with self.assertRaises(devshell.CommunicationError):