1 38 package com.gargoylesoftware.htmlunit.javascript; 39 40 import org.xml.sax.ErrorHandler ; 41 import org.xml.sax.SAXParseException ; 42 43 49 public class StrictErrorHandler implements ErrorHandler { 50 56 public void warning( final SAXParseException rethrow ) throws SAXParseException { 57 throw rethrow; 58 } 59 60 61 67 public void error( final SAXParseException rethrow ) throws SAXParseException { 68 throw rethrow; 69 } 70 71 72 78 public void fatalError( final SAXParseException rethrow ) throws SAXParseException { 79 throw rethrow; 80 } 81 } 82 83 | Popular Tags |