| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
package org.kuali.rice.kew.exception; |
| 18 |
|
|
| 19 |
|
import org.kuali.rice.kew.engine.RouteContext; |
| 20 |
|
import org.kuali.rice.kew.exception.WorkflowRuntimeException; |
| 21 |
|
|
| 22 |
|
|
| 23 |
|
|
| 24 |
|
@link |
| 25 |
|
|
| 26 |
|
|
| 27 |
|
|
| 28 |
|
@author |
| 29 |
|
|
|
|
|
| 0% |
Uncovered Elements: 17 (17) |
Complexity: 7 |
Complexity Density: 0.7 |
|
| 30 |
|
public class RouteManagerException extends WorkflowRuntimeException { |
| 31 |
|
|
| 32 |
|
private static final long serialVersionUID = -7957245610622538745L; |
| 33 |
|
|
| 34 |
|
private RouteContext routeContext; |
| 35 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 36 |
0
|
public RouteManagerException(String message) {... |
| 37 |
0
|
super(message); |
| 38 |
|
} |
| 39 |
|
|
|
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
| 40 |
0
|
public RouteManagerException(String message, RouteContext routeContext) {... |
| 41 |
0
|
super(message); |
| 42 |
0
|
this.routeContext = routeContext; |
| 43 |
|
} |
| 44 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 45 |
0
|
public RouteManagerException(String message, Throwable throwable) {... |
| 46 |
0
|
super(message, throwable); |
| 47 |
|
} |
| 48 |
|
|
|
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
| 49 |
0
|
public RouteManagerException(String message, Throwable throwable, RouteContext routeContext) {... |
| 50 |
0
|
super(message, throwable); |
| 51 |
0
|
this.routeContext = routeContext; |
| 52 |
|
} |
| 53 |
|
|
|
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
| 54 |
0
|
public RouteManagerException(Throwable throwable, RouteContext routeContext) {... |
| 55 |
0
|
super(throwable); |
| 56 |
0
|
this.routeContext = routeContext; |
| 57 |
|
} |
| 58 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 59 |
0
|
public RouteContext getRouteContext() {... |
| 60 |
0
|
return routeContext; |
| 61 |
|
} |
| 62 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 63 |
0
|
public void setRouteContext(RouteContext routeContext) {... |
| 64 |
0
|
this.routeContext = routeContext; |
| 65 |
|
} |
| 66 |
|
|
| 67 |
|
} |