blob: 6e5ad0250bbf2d82980477f43f3e029c47dec3c4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2018 Tasktop Technologies and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.p2.discovery.compatibility.util;
import org.xml.sax.*;
/**
* A default implementation of an error handler that throws exceptions on all errors.
*
* @author David Green
*/
public class DefaultSaxErrorHandler implements ErrorHandler {
@Override
public void warning(SAXParseException exception) {
// ignore
}
@Override
public void fatalError(SAXParseException exception) throws SAXException {
throw exception;
}
@Override
public void error(SAXParseException exception) throws SAXException {
throw exception;
}
}