
goal.tools.test.exceptions.EvaluationFailed Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of runtime Show documentation
Show all versions of runtime Show documentation
A system for running GOAL multi-agent systems.
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