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

goal.tools.test.exceptions.EvaluationFailed Maven / Gradle / Ivy

The newest version!
package goal.tools.test.exceptions;

import goal.tools.test.result.ResultFormatter;
import goal.tools.test.result.TestResult;

public class EvaluationFailed extends Exception implements TestResult {
	/** Generated serialVersionUID */
	private static final long serialVersionUID = -5176959367012313106L;

	public EvaluationFailed(String message, Exception cause) {
		super(message, cause);
	}

	@Override
	public  T accept(ResultFormatter formatter) {
		return formatter.visit(this);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy