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 javax.xml.ws.WebFault; |
19 |
|
|
20 |
|
@WebFault(faultBean="org.kuali.student.common.exceptions.jaxws.UnsupportedActionExceptionBean") |
|
|
| 0% |
Uncovered Elements: 6 (6) |
Complexity: 3 |
Complexity Density: 1 |
|
21 |
|
public class UnsupportedActionException extends Exception { |
22 |
|
|
23 |
|
|
24 |
|
|
25 |
|
|
26 |
|
private static final long serialVersionUID = 1L; |
27 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
28 |
0
|
public UnsupportedActionException(){... |
29 |
0
|
super(); |
30 |
|
} |
31 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
32 |
0
|
public UnsupportedActionException(String message) {... |
33 |
0
|
super(message); |
34 |
|
} |
35 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
36 |
0
|
public UnsupportedActionException(String message, Throwable e) {... |
37 |
0
|
super(message, e); |
38 |
|
} |
39 |
|
|
40 |
|
} |