org.metacsp.throwables.NoFootprintException 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;
public class NoFootprintException extends Error {
public NoFootprintException(String msg) {
super(msg);
}
}