| 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.CircularRelationshipExceptionBean") |
|
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 4 |
Complexity Density: 1 |
|
| 21 |
|
public class CircularRelationshipException extends Exception { |
| 22 |
|
|
| 23 |
|
private static final long serialVersionUID = -6652661226236017610L; |
| 24 |
|
|
| 25 |
|
|
| 26 |
|
|
| 27 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 28 |
0
|
public CircularRelationshipException() {... |
| 29 |
0
|
super(); |
| 30 |
|
} |
| 31 |
|
|
| 32 |
|
|
| 33 |
|
@param |
| 34 |
|
@param |
| 35 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 36 |
0
|
public CircularRelationshipException(String message, Throwable cause) {... |
| 37 |
0
|
super(message, cause); |
| 38 |
|
} |
| 39 |
|
|
| 40 |
|
|
| 41 |
|
@param |
| 42 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 43 |
0
|
public CircularRelationshipException(String message) {... |
| 44 |
0
|
super(message); |
| 45 |
|
} |
| 46 |
|
|
| 47 |
|
|
| 48 |
|
@param |
| 49 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 50 |
0
|
public CircularRelationshipException(Throwable cause) {... |
| 51 |
0
|
super(cause); |
| 52 |
|
} |
| 53 |
|
|
| 54 |
|
} |