case 400:
log.error("the server did not accept the uri ({}) or program ({}) arguments",uri,program);
throw new ContentFormatException("the server did not accept the uri ("+uri+") or program ("+program+") arguments");
case 404:
log.error("the resource with URI {} does not exist on the server",uri);
throw new NotFoundException("the resource with URI "+uri+" does not exist on the server");
default:
log.error("error evaluating LDPath Program Query: {} {}",new Object[] {response.getStatusLine().getStatusCode(),response.getStatusLine().getReasonPhrase()});
throw new MarmottaClientException("error evaluating LDPath Program Query: "+response.getStatusLine().getStatusCode() + " " + response.getStatusLine().getReasonPhrase());
}