org.metacsp.throwables.UnimplementedSubVariableException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of meta-csp-framework Show documentation
Show all versions of meta-csp-framework Show documentation
A Java API for Meta-CSP based reasoning
package org.metacsp.throwables;
import org.metacsp.framework.ConstraintSolver;
public class UnimplementedSubVariableException extends Error {
private static final long serialVersionUID = 5970717539052777001L;
public UnimplementedSubVariableException(ConstraintSolver cs) {
super("Solver " + cs + " has empty implementation of createVariablesSub().");
}
}