1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
import org.xml.sax.ErrorHandler;
import org.xml.sax.SAXException;
import org.xml.sax.SAXParseException;
public class SimpleErrorHandler implements ErrorHandler {
public void warning(SAXParseException e) throws SAXException {
System.out.println("WARNING : " + e.getMessage());
}
public void error(SAXParseException e) throws SAXException {
System.out.println("ERROR : " + e.getMessage());
throw e;
}
public void fatalError(SAXParseException e) throws SAXException {
System.out.println("FATAL ERROR : " + e.getMessage());
throw e;
}
}
|