com.github.dakusui.lisj.CUT Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcunit Show documentation
Show all versions of jcunit Show documentation
Automated combinatorial testing framework on top of JUnit
package com.github.dakusui.lisj;
public class CUT extends Exception {
private static final long serialVersionUID = 1L;
private Object value;
private Form source;
CUT(Form source, Object value) {
this.source = source;
this.value = value;
}
public Object value() {
return this.value;
}
public Form source() {
return this.source;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy