public void printConversionEvent(Object pObject, String pMsg, Exception pException) throws SAXException {
ValidationEventHandler handler = getJMMarshaller().getEventHandler();
if (handler != null) {
ValidationEventLocator locator = new ValidationEventLocatorImpl(pObject);
PrintConversionEventImpl event = new PrintConversionEventImpl(ValidationEvent.FATAL_ERROR, pMsg, locator);
if (handler.handleEvent(event)) {
return;
}
}
throw new SAXException(pMsg, pException);