* Factory method that factors a {@link SAXValidator} instance.
*
* @return a <code>SAXValidator</code> instance
*/
protected SAXValidator createSAXValidator() {
ErrorReporter passthroughErrorReporter = new ErrorReporter() {
public void reportError(ErrorDetails details) {
String key = details.getKey();
if (key == null) {
Attributes attributes = details.getAttributes();