|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
MissingParameterException.java | - | 0% | 0% | 0% |
|
1 |
package com.diasparsoftware.java.lang;
|
|
2 |
|
|
3 |
public class MissingParameterException extends RuntimeException { |
|
4 |
private String parameterName;
|
|
5 |
|
|
6 | 0 |
public MissingParameterException(String parameterName) {
|
7 | 0 |
super("Missing parameter: " + parameterName); |
8 | 0 |
this.parameterName = parameterName;
|
9 |
} |
|
10 |
|
|
11 | 0 |
public String getParameterName() {
|
12 | 0 |
return parameterName;
|
13 |
} |
|
14 |
} |
|
15 |
|
|