ContentResponse contentResponse = httpRequest.send();
return new JettyHttpResponse(contentResponse, httpRequest.getURI());
} catch (InterruptedException e) {
throw new ClientException(e.toString(), e);
} catch (TimeoutException e) {
throw new RequestTimeoutException(e.toString(), e);
} catch (ExecutionException e) {
throw new ClientException(e.toString(), e);
}
}