util.FailedConstraintsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metamodel Show documentation
Show all versions of metamodel Show documentation
A uml code generator and execution engine
The newest version!
package util;
import java.util.Collection;
public class FailedConstraintsException extends Exception {
private Boolean pre;
private Collection failedConstraints;
/** Constructor for FailedConstraintsException
*
* @param pre
* @param failedConstraints
*/
public FailedConstraintsException(Boolean pre, Collection failedConstraints) {
this.failedConstraints=failedConstraints;
this.pre=pre;
}
public Collection getFailedConstraints() {
return failedConstraints;
}
public Boolean getPre() {
return pre;
}
public void setFailedConstraints(Collection failedConstraints) {
this.failedConstraints=failedConstraints;
}
public void setPre(Boolean pre) {
this.pre=pre;
}
}