34353637383940
} public void fatalError( SAXParseException e ) throws SAXException { hadError = true; printSAXParseException( e, MSG_FATAL ); throw new ValidationUnrecoverableException(e); }
56575859606162
private void countCheck( SAXParseException e ) throws ValidationUnrecoverableException { if( counter++ < 20 ) return; System.out.println( Driver.localize(MSG_TOO_MANY_ERRORS) ); throw new ValidationUnrecoverableException(e); }
78798081828384