Sha256: 7c6140a42a5b28d47b1adc5227cb2b64624a55105d954afe86534f68bcb7594d
Contents?: true
Size: 489 Bytes
Versions: 55
Compression:
Stored size: 489 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
55 entries across 55 versions & 2 rubygems