ErrorHandler errorHandler = marshaller.getErrorHandler();
if(null == errorHandler) {
throw e;
} else {
try {
MarshalSAXParseException saxParseException = new MarshalSAXParseException(null, null, null, -1, -1, e, child);
errorHandler.error(saxParseException);
} catch(SAXException saxParseException) {
throw e;
}
}