}
final XMLReader reader = saxParser.getXMLReader();
reader.setErrorHandler(new XmlReaderErrorHandler(this));
reader.setContentHandler(this);
// final String sourcePath = exportFile.toURI().toString();
final InputStream inputStream = new FileInputStreamNIO(exportFile);
reader.parse(new InputSource(inputStream));
} catch (SAXException exception) {
final String message = exception.getMessage();
final Exception embeddedException = exception.getException();
if (embeddedException instanceof ImportClassNotFoundException) {