1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.rice.kns.exception; |
17 |
|
|
18 |
|
import org.apache.struts.action.ActionForm; |
19 |
|
import org.apache.struts.action.ActionMapping; |
20 |
|
import org.kuali.rice.core.api.exception.KualiException; |
21 |
|
|
22 |
|
|
23 |
|
|
24 |
|
|
25 |
|
|
26 |
|
|
27 |
|
|
|
|
| 0% |
Uncovered Elements: 10 (10) |
Complexity: 4 |
Complexity Density: 0.67 |
|
28 |
|
public class FileUploadLimitExceededException extends KualiException { |
29 |
|
|
30 |
|
private ActionForm actionForm; |
31 |
|
private ActionMapping actionMapping; |
32 |
|
|
33 |
|
|
34 |
|
|
35 |
|
|
36 |
|
@param |
37 |
|
|
|
|
| 0% |
Uncovered Elements: 3 (3) |
Complexity: 1 |
Complexity Density: 0.33 |
|
38 |
0
|
public FileUploadLimitExceededException(String message, ActionForm actionForm, ActionMapping actionMapping) {... |
39 |
0
|
super(message); |
40 |
0
|
this.actionForm = actionForm; |
41 |
0
|
this.actionMapping = actionMapping; |
42 |
|
} |
43 |
|
|
44 |
|
|
45 |
|
|
46 |
|
|
47 |
|
@param |
48 |
|
@param |
49 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
50 |
0
|
public FileUploadLimitExceededException(String message, Throwable cause) {... |
51 |
0
|
super(message, cause); |
52 |
|
} |
53 |
|
|
54 |
|
|
55 |
|
@return |
56 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
57 |
0
|
public ActionForm getActionForm() {... |
58 |
0
|
return this.actionForm; |
59 |
|
} |
60 |
|
|
61 |
|
|
62 |
|
@return |
63 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
64 |
0
|
public ActionMapping getActionMapping() {... |
65 |
0
|
return this.actionMapping; |
66 |
|
} |
67 |
|
|
68 |
|
} |