if (this.config.developmentMode()) {
this.errorReporter = new ErrorReporingToSystemErr();
} else {
this.errorReporter = new ErrorReporterViaEmail(this.config);
}
viewer = new FreemarkerTemplateViewer(this.config.templateFolder());
initOnlyOnce();
applicationInit();
} catch (Exception initException) {
throw new ServletException(initException);
}