try {
// reading without interpolation to preserve user settings as variables
fr = new FileReader(file);
SecurityConfigurationXpp3Reader reader = new SecurityConfigurationXpp3Reader();
return reader.read(fr);
}
catch (XmlPullParserException e) {
throw new ConfigurationIsCorruptedException(file.getAbsolutePath(), e);
}
finally {