throw new OutOfProtocolException(requestUrl, message);
}
final String clientStatusChecksum = response.getHeaderValue(CLIENT_STATUS_CHECKSUM_HEADER);
return response.withContent(new Transformer<Response<T>, InputStream>() {
public Response<T> transform(InputStream inputStream) {
Reader reader;
try {
reader = new InputStreamReader(inputStream, "utf-8");
} catch (UnsupportedEncodingException e) {