We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0f5694 commit 13d8999Copy full SHA for 13d8999
socketlabs/injectionapi/core/retryhandler.py
@@ -46,7 +46,7 @@ def send(self, body):
46
response = self.__http_client.send_request(body)
47
48
if response.status in self.ErrorStatusCodes:
49
- raise HTTPException
+ raise HTTPException("HttpStatusCode: {0}. Response contains server error.".format(response.status))
50
51
data = response.read().decode("utf-8")
52
response_code = response.status
0 commit comments