001    package railo.commons.io.res.type.s3;
002    
003    import java.io.IOException;
004    import java.io.InputStream;
005    
006    import org.xml.sax.Attributes;
007    import org.xml.sax.SAXException;
008    
009    
010    
011    public final class ErrorFactory extends S3Factory {
012            public ErrorFactory(InputStream in) throws IOException, SAXException {
013                    super();
014                    if(in==null) return;
015                    init(in);
016            }
017            public void doStartElement(String uri, String name, String qName, Attributes atts) {}
018            public void doEndElement(String uri, String name, String qName) throws SAXException {}
019            protected void setContent(String value) throws SAXException     {}      
020    }