in server/src/jetbrains/buildServer/vsoRooms/notificator/VSONotificatorConfig.java [126:137]
private Document parseFile(File configFile) {
try {
if (configFile.isFile()) {
return JDOMUtil.loadDocument(configFile);
}
} catch (JDOMException e) {
LOG.error("Failed to parse xml configuration file: " + configFile.getAbsolutePath(), e);
} catch (IOException e) {
LOG.error("I/O error occurred on attempt to parse xml configuration file: " + configFile.getAbsolutePath(), e);
}
return null;
}