1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.security.spring; |
17 |
|
|
18 |
|
import org.springframework.security.AccountStatusException; |
19 |
|
|
20 |
|
|
21 |
|
|
22 |
|
|
23 |
|
|
24 |
|
|
25 |
|
|
26 |
|
|
27 |
|
@author |
28 |
|
|
29 |
|
|
|
|
| 0% |
Uncovered Elements: 6 (6) |
Complexity: 3 |
Complexity Density: 1 |
|
30 |
|
public class KimUserNotFoundException extends AccountStatusException{ |
31 |
|
|
32 |
|
private static final long serialVersionUID = 1L; |
33 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
34 |
0
|
public KimUserNotFoundException(String msg) {... |
35 |
0
|
super(msg); |
36 |
|
} |
37 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
38 |
0
|
public KimUserNotFoundException(String msg, Throwable t) {... |
39 |
0
|
super(msg, t); |
40 |
|
} |
41 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
42 |
0
|
protected KimUserNotFoundException(String msg, Object extraInformation) {... |
43 |
0
|
super(msg, extraInformation); |
44 |
|
} |
45 |
|
} |