Index: src/org/netbeans/modules/apisupport/project/ModuleList.java =================================================================== RCS file: /cvs/apisupport/project/src/org/netbeans/modules/apisupport/project/ModuleList.java,v retrieving revision 1.8 diff -u -u -r1.8 ModuleList.java --- src/org/netbeans/modules/apisupport/project/ModuleList.java 25 Mar 2004 15:52:30 -0000 1.8 +++ src/org/netbeans/modules/apisupport/project/ModuleList.java 30 Mar 2004 14:38:51 -0000 @@ -67,27 +67,27 @@ Element el = (Element)it.next(); Element pathEl = Util.findElement(el, "path", null); // NOI18N if (pathEl == null) { - throw new SAXException("No "); // NOI18N + throw new SAXException("No in " + modulesXml + " for " + el); // NOI18N } String path = Util.findText(pathEl); if (path == null) { - throw new SAXException("No text in "); // NOI18N + throw new SAXException("No text in in " + modulesXml + " for " + el); // NOI18N } Element cnbEl = Util.findElement(el, "cnb", null); // NOI18N if (cnbEl == null) { - throw new SAXException("No "); // NOI18N + throw new SAXException("No in " + modulesXml + " for " + el); // NOI18N } String cnb = Util.findText(cnbEl); if (cnb == null) { - throw new SAXException("No text in "); // NOI18N + throw new SAXException("No text in in " + modulesXml + " for " + el); // NOI18N } Element jarEl = Util.findElement(el, "jar", null); // NOI18N if (jarEl == null) { - throw new SAXException("No "); // NOI18N + throw new SAXException("No in " + modulesXml + " for " + el); // NOI18N } String jar = Util.findText(jarEl); if (jar == null) { - throw new SAXException("No text in "); // NOI18N + throw new SAXException("No text in in " + modulesXml + " for " + el); // NOI18N } entries.put(cnb, new Entry(path, cnb, jar)); }