X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;ds=sidebyside;f=org.argeo.slc.core%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fcore%2Ftest%2FSimpleResultPart.java;h=eae7f4067e632ab503067ef7f8f335a232305816;hb=7b4d35882e5a3843381d19c909d62077a924509b;hp=249fd2149f58a93cd43aa1a4f56ee161e9e71fd8;hpb=faf680e212bf3e18837c4f798587856e061273b3;p=gpl%2Fargeo-slc.git diff --git a/org.argeo.slc.core/src/main/java/org/argeo/slc/core/test/SimpleResultPart.java b/org.argeo.slc.core/src/main/java/org/argeo/slc/core/test/SimpleResultPart.java index 249fd2149..eae7f4067 100644 --- a/org.argeo.slc.core/src/main/java/org/argeo/slc/core/test/SimpleResultPart.java +++ b/org.argeo.slc.core/src/main/java/org/argeo/slc/core/test/SimpleResultPart.java @@ -15,7 +15,7 @@ public class SimpleResultPart implements TestResultPart, TestStatus { private Integer status; private String message; - private Throwable exception; + private Exception exception; public SimpleResultPart() { } @@ -24,7 +24,7 @@ public class SimpleResultPart implements TestResultPart, TestStatus { this(status, message, null); } - public SimpleResultPart(Integer status, String message, Throwable exception) { + public SimpleResultPart(Integer status, String message, Exception exception) { this.status = status; this.message = message; this.exception = exception; @@ -46,11 +46,11 @@ public class SimpleResultPart implements TestResultPart, TestStatus { return status; } - public Throwable getException() { + public Exception getException() { return exception; } - public void setException(Throwable exception) { + public void setException(Exception exception) { this.exception = exception; }