| 1 |
|
package jalview.ws2.actions; |
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
@author |
| 8 |
|
|
| 9 |
|
|
| |
|
| 0% |
Uncovered Elements: 6 (6) |
Complexity: 3 |
Complexity Density: 1 |
|
| 10 |
|
public class ServiceInputInvalidException extends Exception |
| 11 |
|
{ |
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
private static final long serialVersionUID = 174066679057181584L; |
| 16 |
|
|
| |
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 17 |
0 |
public ServiceInputInvalidException(String message)... |
| 18 |
|
{ |
| 19 |
0 |
super(message); |
| 20 |
|
} |
| 21 |
|
|
| |
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 22 |
0 |
public ServiceInputInvalidException(Throwable cause)... |
| 23 |
|
{ |
| 24 |
0 |
super(cause); |
| 25 |
|
} |
| 26 |
|
|
| |
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 27 |
0 |
public ServiceInputInvalidException(String message, Throwable cause)... |
| 28 |
|
{ |
| 29 |
0 |
super(message, cause); |
| 30 |
|
} |
| 31 |
|
} |