javax.constraints.ConstraintException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsr331 Show documentation
Show all versions of jsr331 Show documentation
JCP Standard JSR331 “Java Constraint Programming API”. It is used for Modeling and Solving Constraint Satisfaction and Optimization Problems using Java and off-the-shelf Constraint/Linear Solvers
The newest version!
package javax.constraints;
public class ConstraintException extends RuntimeException {
public ConstraintException() {
super();
// TODO Auto-generated constructor stub
}
public ConstraintException(String arg0, Throwable arg1) {
super(arg0, arg1);
// TODO Auto-generated constructor stub
}
public ConstraintException(String arg0) {
super(arg0);
// TODO Auto-generated constructor stub
}
public ConstraintException(Throwable arg0) {
super(arg0);
// TODO Auto-generated constructor stub
}
}