1
2
3 package fr.kaamelot.reporter.exception;
4
5
6
7
8
9
10
11
12
13
14 public class DataEvaluationException extends Exception {
15
16
17 private static final long serialVersionUID = 1L;
18
19 private Throwable cause;
20
21
22
23 public DataEvaluationException() {
24 super();
25
26 }
27
28
29
30
31 public DataEvaluationException(String message) {
32 super(message);
33
34 }
35
36
37
38
39
40 public DataEvaluationException(String message, Throwable _cause) {
41
42 super(message);
43 this.cause = _cause;
44 }
45
46
47
48
49 public DataEvaluationException(Throwable _cause) {
50
51 this.cause = _cause;
52 }
53
54
55
56
57 public Throwable getCause() {
58 return cause;
59 }
60
61 }