PrintWriter out = response.getWriter();
written = true;
out.write(CSRF_PROTECT);
serverService.run(message, context, out, attributes);
} catch (RequestParam.InvalidParamException ipe) {
handleServletException(new SystemErrorException(ipe), false, context, request, response, false);
return;
} catch (RequestParam.MissingParamException mpe) {
handleServletException(new SystemErrorException(mpe), false, context, request, response, false);
return;
} catch (JsonParseException jpe) {
handleServletException(new SystemErrorException(jpe), false, context, request, response, false);
} catch (Exception e) {
handleServletException(e, false, context, request, response, written);
}
}