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

se.ugli.durian.j.dom.parser.DefaultErrorHandler Maven / Gradle / Ivy

package se.ugli.durian.j.dom.parser;

import org.xml.sax.ErrorHandler;
import org.xml.sax.SAXException;
import org.xml.sax.SAXParseException;

public class DefaultErrorHandler implements ErrorHandler {

    @Override
    public void warning(final SAXParseException exception) throws SAXException {
        throw exception;
    }

    @Override
    public void error(final SAXParseException exception) throws SAXException {
        throw exception;
    }

    @Override
    public void fatalError(final SAXParseException exception) throws SAXException {
        throw exception;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy