org.metacsp.throwables.NoFocusDefinedException 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 java.util.Arrays;
import org.metacsp.framework.Variable;
public class NoFocusDefinedException extends RuntimeException {
private static final long serialVersionUID = -720305819659302093L;
public NoFocusDefinedException(Variable ... vars) {
super(Arrays.toString(vars));
}
}