InputStream is = classLoader.getResourceAsStream(filePath);
SAXParserFactory spf = SAXParserFactory.newInstance();
SAXParser sp = spf.newSAXParser();
sp.parse(is, this);
} catch (ParserConfigurationException e) {
throw new HDIVException(e.getMessage(), e);
} catch (SAXException e) {
throw new HDIVException(e.getMessage(), e);
} catch (IOException e) {
throw new HDIVException(e.getMessage(), e);
}
}