private Context getContext() {
Context context = localContext.get();
if (context == null) {
throw new OutOfScopeException("Cannot access scoped object. Either we"
+ " are not currently inside an HTTP Servlet currentRequest, or you may"
+ " have forgotten to apply " + DefaultArgoDispatcher.class.getName()
+ " as a servlet filter for this currentRequest.");
}
return context;