|
@@ -211,7 +211,7 @@ public class InputStreamBinder extends IInputStreamService.Stub {
|
|
if (status >= HTTP_STATUS_CODE_OK && status < HTTP_STATUS_CODE_MULTIPLE_CHOICES) {
|
|
if (status >= HTTP_STATUS_CODE_OK && status < HTTP_STATUS_CODE_MULTIPLE_CHOICES) {
|
|
return method.getResponseBodyAsStream();
|
|
return method.getResponseBodyAsStream();
|
|
} else {
|
|
} else {
|
|
- throw new IllegalStateException(EXCEPTION_HTTP_REQUEST_FAILED, new IllegalStateException(""+status));
|
|
|
|
|
|
+ throw new IllegalStateException(EXCEPTION_HTTP_REQUEST_FAILED, new IllegalStateException(String.valueOf(status)));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|