use of com.sun.istack.SAXParseException2 in project metro-jax-ws by eclipse-ee4j.
the class WSDLModeler method reportError.
private void reportError(Entity entity, String formattedMsg, Exception nestedException) {
Locator locator = (entity == null) ? null : entity.getLocator();
SAXParseException e = new SAXParseException2(formattedMsg, locator, nestedException);
errReceiver.error(e);
}
Aggregations