else {
setupFeaturesAndProps(parser);
}
if (DEBUG) System.err.println("using MSV XMLReader=" + parser.getClass().getName());
} catch (SAXNotRecognizedException ex) { // e.g. syntax or semantic error in schema
throw new XMLException(ex.toString(), ex);
} catch (Exception ex) {
throw new XMLException(
"Could not find or create a suitable MSV parser" +
" - check your classpath"
, ex);
} catch (NoClassDefFoundError ex) {
throw new XMLException(
"Could not find or create a suitable MSV parser" +
" - check your classpath"
, ex);
}