Searched refs:canRecover (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DLoader.java96 protected final void reportUnexpectedChildElement(TagName ea, boolean canRecover) throws SAXException { argument
97 if(canRecover && !UnmarshallingContext.getInstance().parent.hasEventHandler())
103 reportError(Messages.UNINTERNED_STRINGS.format(), canRecover );
105 reportError(Messages.UNEXPECTED_ELEMENT.format(ea.uri,ea.local,computeExpectedElements()), canRecover );
229 public static void handleGenericException(Exception e, boolean canRecover) throws SAXException { argument
230 reportError(e.getMessage(), e, canRecover );
237 protected static void reportError(String msg, boolean canRecover) throws SAXException { argument
238 reportError(msg, null, canRecover );
241 public static void reportError(String msg, Exception nested, boolean canRecover) throws SAXException { argument
244 canRecover
[all...]
H A DUnmarshallingContext.java629 * to recover. If the canRecover flag is false, regardless
637 public void handleEvent(ValidationEvent event, boolean canRecover ) throws SAXException {
646 if( !canRecover || !recover )
675 public void handleError(Exception e,boolean canRecover) throws SAXException { argument
676 handleEvent(new ValidationEventImpl(ValidationEvent.ERROR,e.getMessage(),locator.getLocation(),e),canRecover);

Completed in 34 milliseconds