ai.libs.mlplan.safeguard.EvaluationSafeGuardException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mlplan-core Show documentation
Show all versions of mlplan-core Show documentation
This project provides an implementation of the AutoML tool ML-Plan.
The newest version!
package ai.libs.mlplan.safeguard;
import org.api4.java.common.attributedobjects.ObjectEvaluationFailedException;
import ai.libs.jaicore.components.api.IComponentInstance;
public class EvaluationSafeGuardException extends ObjectEvaluationFailedException {
/**
* Auto-generated serial version UID.
*/
private static final long serialVersionUID = 2170317514693997168L;
private final IComponentInstance ci;
public EvaluationSafeGuardException(final String message, final IComponentInstance ci) {
super(message);
this.ci = ci;
}
public IComponentInstance getCausingComponentInstance() {
return this.ci;
}
}