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 4bf4a47 commit 513b348Copy full SHA for 513b348
src/com/loopj/android/http/AsyncHttpRequest.java
@@ -120,7 +120,9 @@ private void makeRequestWithRetries() throws ConnectException {
120
cause = new IOException("NPE in HttpClient" + e.getMessage());
121
retry = retryHandler.retryRequest(cause, ++executionCount, context);
122
} catch (Exception e) {
123
- responseHandler.sendFailureMessage(e, "wtf: "+e.toString());
+ e.printStackTrace();
124
+ responseHandler.sendFailureMessage(
125
+ e, "Unexpected error: "+e.toString());
126
return;
127
}
128
0 commit comments