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)
{
log.error("ParserConfigurationException: {}", e.getMessage(), e);
throw new InternalException(e);
} finally