// Get Root Element
configRootNode = doc.getDocumentElement();
} catch (FileNotFoundException e)
{
log.error("Configuration file {} not found!", fileName, e);
throw new FileReadException(fileName, e);
} catch (IOException e)
{
log.error("Error reading configuration file {}", fileName, e);
throw new FileReadException(fileName, e);
} catch (SAXException e)
{
log.error("Invalid XML in configuration file {}", fileName, e);
throw new FileParseException(fileName, e);
} catch (ParserConfigurationException e)