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

org.hibernate.hql.ast.ErrorReporter Maven / Gradle / Ivy

The newest version!
// $Id: ErrorReporter.java 3974 2004-06-29 02:40:43Z pgmjsd $
package org.hibernate.hql.ast;

import antlr.RecognitionException;

/**
 * Implementations will report or handle errors invoked by an ANTLR base parser.
 *
 * @author josh Jun 27, 2004 9:49:55 PM
 */
public interface ErrorReporter {
	void reportError(RecognitionException e);

	void reportError(String s);

	void reportWarning(String s);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy