blob: 9e3c27a7b9c6694afbb72fec72629e7dfb5c9689 [file] [log] [blame]
package org.checkerframework.javacutil;
/**
* An implementation of the ErrorHandler interface can be registered
* with the ErrorReporter class to change the default behavior on
* errors.
*/
public interface ErrorHandler {
/**
* Log an error message and abort processing.
*
* @param msg the error message to log
*/
public void errorAbort(String msg);
public void errorAbort(String msg, Throwable cause);
}