} else
logger.debug("Found \"" + INJECTOR_ELEMENT_NAME + "\" element");
} catch (ParserConfigurationException pce) {
logger.error("Could not locate a JAXP parser");
throw new GenericConfigurationParsingException("Could not locate a JAXP parser");
} catch (IOException e) {
logger.error("IOException occourred during parsing for \"" + is.toString() + "\" file. Message is: \"" + e.getLocalizedMessage() + "\"");
throw new GenericConfigurationParsingException("IOException occourred during parsing for \"" + is.toString() + "\" file. Message is: \"" + e.getLocalizedMessage() + "\"");
} catch (SAXException e) {
logger.error("XML document \"" + is.toString() + "\" is not well-formed");
throw new InvalidConfigurationFileException("XML document \"" + is.toString() + "\" is not well-formed");
}