reasonPhrase + " httpCode=" + response.getStatusLine().getStatusCode());
countFailedApiCall(updateInfo.apiKey,
updateInfo.objectTypes, then, requestUrl, reasonPhrase,
statusCode, reasonPhrase);
if (statusCode==401)
throw new AuthExpiredException();
else if (statusCode>=400&&statusCode<500)
throw new UpdateFailedException("Unexpected response code " + statusCode, new Exception(), true,
ApiKey.PermanentFailReason.clientError(statusCode, reasonPhrase));
throw new UpdateFailedException(new Exception());
}