} catch (IOException e) {
log.fatal("IO");
e.printStackTrace();
throw new CannotCompileException(cfgFile,e);
} catch (SAXException e) {
log.fatal("SAX");
e.printStackTrace();
throw new CannotCompileException(cfgFile,e);
} catch (ParserConfigurationException e) {
log.fatal("PCE");
e.printStackTrace();
throw new CannotCompileException(cfgFile,e);
} catch (FactoryConfigurationError e) {
log.fatal("FCE");
e.printStackTrace();
throw new CannotCompileException(cfgFile,e);
}
try {
theTranslator.start(thePool);
} catch (NotFoundException e) {
log.fatal("NFE");
e.printStackTrace();
throw new CannotCompileException(cfgFile,e);
}
initialized = true;
log.info("Translator initialized successfully");