com.thaiopensource.xml.sax.DraconianErrorHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trang Show documentation
Show all versions of trang Show documentation
Jing/Trang - tools for validating and translating RelaxNG
The newest version!
package com.thaiopensource.xml.sax;
import org.xml.sax.ErrorHandler;
import org.xml.sax.SAXParseException;
import org.xml.sax.SAXException;
/**
* An ErrorHandler
implementing a brutal error handling policy.
* Fatal errors and errors are handled by throwing the exception.
* Warnings are ignored.
*
* @author James Clark
*/
public class DraconianErrorHandler implements ErrorHandler {
public void warning(SAXParseException e) throws SAXException {
}
public void error(SAXParseException e) throws SAXException {
throw e;
}
public void fatalError(SAXParseException e) throws SAXException {
throw e;
}
}