throw new DeltaCloudNotFoundClientException(MessageFormat.format(
"The server could not find the resource \"{0}\"",
requestUrl));
} else if (HttpStatusRange.CLIENT_ERROR.isInRange(statusCode)
|| HttpStatusRange.SERVER_ERROR.isInRange(statusCode)) {
throw new DeltaCloudClientException(
MessageFormat.format("The server reported an error \"{0}\" on requesting \"{1}\"",
statusMessage, requestUrl));
}
}