MCPcopy Index your code
hub / github.com/aws/aws-cli / HTTPClientError

Class HTTPClientError

awscli/botocore/exceptions.py:91–104  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

89
90
91class HTTPClientError(BotoCoreError):
92 fmt = 'An HTTP Client raised an unhandled exception: {error}'
93
94 def __init__(self, request=None, response=None, **kwargs):
95 self.request = request
96 self.response = response
97 super().__init__(**kwargs)
98
99 def __reduce__(self):
100 return _exception_from_packed_args, (
101 self.__class__,
102 (self.request, self.response),
103 self.kwargs,
104 )
105
106
107class ConnectionError(BotoCoreError):

Callers 5

test_standard.pyFile · 0.90
sendMethod · 0.90

Calls

no outgoing calls