This type of error occurs when MSV finds an unexpected tag name. For example:
... ... ...
... ...
This error is reported when the startElement callback is called.
113114115116117118119120121122123
public void startElement( String ns, String local, String qname, Attributes atts ) throws SAXException { ErrorInfo ei = null; boolean unknownError = false; try { super.startElement(ns,local,qname,atts); // there is no error.
161162163164165166167168169170171
indent++; } public void endElement( String ns, String local, String qname ) throws SAXException { ErrorInfo ei = null; try { super.endElement(ns,local,qname); // there is no error. } catch( ValidityViolation vv ) {