001    package railo.runtime.text.feed;
002    
003    import org.xml.sax.DTDHandler;
004    import org.xml.sax.SAXException;
005    
006    public class DummyDTDHandler implements DTDHandler {
007    
008            public void notationDecl(String arg0, String arg1, String arg2)
009                            throws SAXException {
010            }
011    
012            public void unparsedEntityDecl(String arg0, String arg1, String arg2,
013                            String arg3) throws SAXException {
014            }
015    
016    }