in server/src/jetbrains/buildServer/staticUIExtensions/config/ConfigurationReaderImpl.java [33:42]
public Collection<Rule> parseConfiguration(@NotNull final File config) throws ConfigurationException {
try {
final Element root = FileUtil.parseDocument(config);
return processXml(root);
} catch (JDOMException e) {
throw new ConfigurationException("Failed to parse configuration file: " + e.getMessage(), e);
} catch (IOException e) {
throw new ConfigurationException("Failed to read configuration file: " + e.getMessage(), e);
}
}