120121122123124125126
/** * Initialize */ public void initialize() throws Exception { this.workspace = new Workspace(this.servletContext, this.deliConfig); }
167168169170171172173174175176177
* Initialize */ public void initialize() throws Exception { try { this.workspace = new Workspace(this.servletContext, this.deliConfig); } catch (Exception e) { getLogger().error("DELI Exception while creating workspace: ", e); throw e; } }