188189190191192193194195196197
XMLParser parser = new XMLParser(); try { this.config = parser.process(is, validate); } catch (Exception e) { throw new StartupException(e.getMessage()); } processArgs(this.config); }
290291292293294295296297
out.close(); } catch (IOException e) { String msg = sm.getString("startup.loadconfig.ioe", configFile); throw new StartupException(msg); } }