blob: 36d52885c1ff8997f2f8f7d676bc769012bd7062 [file] [log] [blame]
/*****************************************************************************
* Copyright (C) The Apache Software Foundation. All rights reserved. *
* ------------------------------------------------------------------------- *
* This software is published under the terms of the Apache Software License *
* version 1.1, a copy of which has been included with this distribution in *
* the LICENSE file. *
*****************************************************************************/
package org.apache.batik.parser;
/**
* This interface must be implemented and then registred as the error handler
* in order to be notified of parsing errors.
*
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id$
*/
public interface ErrorHandler {
/**
* Called when a parse error occurs.
*/
void error(ParseException e) throws ParseException;
}