this.delegate = new PropertyResourceBundle(new FileInputStream(bundle));
logger.debug("REPORT_LOCALE --> " + locale);
logger.debug("REPORT_RESOURCE_BUNDLE --> " + bundle.getAbsolutePath());
} catch (FileNotFoundException e) {
logger.debug("Couldn't find report bundle at " + bundle.getAbsolutePath() + ", creating an empty one");
this.delegate = new EmptyBundle();
} catch (IOException e) {
logger.debug("Couldn't use report bundle at " + bundle.getAbsolutePath() + ", creating an empty one");
this.delegate = new EmptyBundle();
}
}