try { hadError = true; getErrorHandler().error( Util.toSAXParseException(e) ); } catch( SAXException se ) { throw new WrappedSAXException(se); }
try { hadError = true; getErrorHandler().fatalError( Util.toSAXParseException(e) ); } catch( SAXException se ) { throw new WrappedSAXException(se); }
Implemented by the derived class to return the actual {@link ErrorHandler} to which errors are sent.returnalways return non-null valid object.
returns if there was an error since the last invocation of the resetError method. return hadError;
return hadError;
resets the error flag. hadError = false;
hadError = false;
try { getErrorHandler().warning( Util.toSAXParseException(e) ); } catch( SAXException se ) { throw new WrappedSAXException(se); }