Throwable e = new Throwable("Necessary URL parameter not found in proxy request");
throw new WebApplicationException(e, createErrorResponse(e, 404));
}
try
{
HTTPResponse resp = conn.fetchPost(httpRequest, url);
return createResponse(resp);
}
catch (MalformedURLException mue)
{
throw new WebApplicationException(mue, createErrorResponse(mue, 400));