blob: 6bf388233d004159961714f7238c07bdc3e7d488 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package au.id.zancanaro.javacheck;
import java.util.List;
public class ShrinkResult {
public final List<Object> args;
public final Throwable thrown;
public ShrinkResult(List<Object> args, Throwable thrown) {
this.args = args;
this.thrown = thrown;
}
}
|