1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.common.exceptions; |
17 | |
|
18 | |
import java.io.PrintStream; |
19 | |
import java.io.PrintWriter; |
20 | |
import java.util.List; |
21 | |
|
22 | |
import javax.xml.ws.WebFault; |
23 | |
|
24 | |
import org.apache.log4j.Logger; |
25 | |
import org.kuali.student.common.validation.dto.ValidationResultInfo; |
26 | |
|
27 | |
@WebFault(faultBean="org.kuali.student.common.exceptions.jaxws.DataValidationErrorExceptionBean") |
28 | |
public class DataValidationErrorException extends Exception { |
29 | |
|
30 | 0 | final Logger LOG = Logger.getLogger(DataValidationErrorException.class); |
31 | |
|
32 | |
private static final long serialVersionUID = 1L; |
33 | |
|
34 | |
private List<ValidationResultInfo> validationResults; |
35 | |
|
36 | |
|
37 | |
|
38 | |
|
39 | |
public DataValidationErrorException() { |
40 | 0 | super(); |
41 | 0 | } |
42 | |
|
43 | |
|
44 | |
|
45 | |
|
46 | |
public DataValidationErrorException(String message, List<ValidationResultInfo> validationResults) { |
47 | 0 | this(message, validationResults, null); |
48 | 0 | } |
49 | |
|
50 | |
|
51 | |
|
52 | |
|
53 | |
|
54 | |
public DataValidationErrorException(String message, List<ValidationResultInfo> validationResults, Throwable cause) { |
55 | 0 | super(message, cause); |
56 | 0 | this.validationResults = validationResults; |
57 | 0 | } |
58 | |
|
59 | |
|
60 | |
|
61 | |
|
62 | |
|
63 | |
public DataValidationErrorException(String message, Throwable cause) { |
64 | 0 | super(message, cause); |
65 | 0 | } |
66 | |
|
67 | |
|
68 | |
|
69 | |
|
70 | |
public DataValidationErrorException(String message) { |
71 | 0 | super(message); |
72 | 0 | } |
73 | |
|
74 | |
|
75 | |
|
76 | |
|
77 | |
public DataValidationErrorException(Throwable cause) { |
78 | 0 | super(cause); |
79 | 0 | } |
80 | |
|
81 | |
|
82 | |
|
83 | |
|
84 | |
|
85 | |
public List<ValidationResultInfo> getValidationResults() { |
86 | 0 | return validationResults; |
87 | |
} |
88 | |
|
89 | |
@Override |
90 | |
public void printStackTrace(PrintStream s) { |
91 | 0 | super.printStackTrace(s); |
92 | 0 | logValidationResults(); |
93 | 0 | } |
94 | |
|
95 | |
@Override |
96 | |
public void printStackTrace(PrintWriter s) { |
97 | 0 | super.printStackTrace(s); |
98 | 0 | logValidationResults(); |
99 | 0 | } |
100 | |
|
101 | |
@Override |
102 | |
public String toString() { |
103 | 0 | StringBuilder sb = new StringBuilder(); |
104 | 0 | sb.append(super.getMessage()).append("\n"); |
105 | 0 | if (validationResults != null){ |
106 | 0 | sb.append("Validation Results: \n"); |
107 | 0 | for (ValidationResultInfo info:validationResults){ |
108 | 0 | sb.append(info).append("\n"); |
109 | |
} |
110 | |
} else { |
111 | 0 | sb.append("Validation Results: None set."); |
112 | |
} |
113 | 0 | return sb.toString(); |
114 | |
} |
115 | |
|
116 | |
private void logValidationResults(){ |
117 | 0 | LOG.debug(toString()); } |
118 | |
|
119 | |
|
120 | |
|
121 | |
} |