org.apache.http.HttpResponse response;
try {
response = client.execute(requestObj);
HttpResponse<T> httpResponse = new HttpResponse<T>(response, responseClass);
requestObj.releaseConnection();
return httpResponse;
} catch (Exception e) {
throw new UnirestException(e);
} finally {
requestObj.releaseConnection();