log.error("Unable to get planet manager", ex);
response.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
return;
}
PlanetRequest planetRequest = null;
try {
planetRequest = new PlanetRequest(request);
} catch (Exception e) {
// some kind of error parsing the request
log.debug("error creating planet request", e);
response.sendError(HttpServletResponse.SC_NOT_FOUND);
return;