xmlLogger.debug(" XML " + resource + //NOI18N
" found, start parsing ..."); //NOI18N
parser.parse(new InputSource(new InputStreamReader(stream)));
}
catch (SAXException ex) {
throw new ModelFatalException(
msg.msg("EXC_XMLError", resource), ex); //NOI18N
}
catch (ParserConfigurationException ex) {
throw new ModelFatalException(
msg.msg("EXC_XMLError", resource), ex); //NOI18N
}
catch (IOException ex) {
throw new ModelFatalException(
msg.msg("EXC_XMLError", resource), ex); //NOI18N
}
finally {
try { stream.close(); }
catch (IOException ex) {