In org.apache.html.dom.HTMLDocumentImpl.populateElementType

private static void populateElementType( String tagName, String className )
   {
       try {
           _elementTypesHTML.put( tagName,
ObjectFactory.findProviderClass("org.apache.html.dom." + className,
                   HTMLDocumentImpl.class.getClassLoader(), true) );
       } catch ( Exception except ) {
new RuntimeException( "HTM019 OpenXML Error: Could not find or execute class " + className + " implementing HTML element " + tagName
                                 + "\n" + className + "\t" + tagName);
       }
   }

the RuntimeException is created but never thrown. I'd assume that was the intention.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to