All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.thaiopensource.xml.sax.DraconianErrorHandler Maven / Gradle / Ivy

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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy