X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=org.argeo.slc.core%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fcore%2Ftest%2FSimpleResultPart.java;h=eae7f4067e632ab503067ef7f8f335a232305816;hb=02b464f4fceaee1d65c711c868259879b02001b5;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; }