Sha256: 61cf8795fdb4f72cf01368e1dc0e970c1ab74663995423562c20608deaf6717e
Contents?: true
Size: 495 Bytes
Versions: 63
Compression:
Stored size: 495 Bytes
Contents
package nokogiri.internals; import org.xml.sax.ErrorHandler; import org.xml.sax.SAXException; import org.xml.sax.SAXParseException; public class IgnoreSchemaErrorsErrorHandler implements ErrorHandler { @Override public void warning(SAXParseException exception) throws SAXException { } @Override public void error(SAXParseException exception) throws SAXException { } @Override public void fatalError(SAXParseException exception) throws SAXException { } }
Version data entries
63 entries across 63 versions & 3 rubygems