Skip to content

Package: ValueNotInRangeOfTypeException

ValueNotInRangeOfTypeException

nameinstructionbranchcomplexitylinemethod
ValueNotInRangeOfTypeException(String)
M: 0 C: 4
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 2
100%
M: 0 C: 1
100%

Coverage

1: package model.type;
2:
3: /**
4: *
5: * @author HFW410RA - Philipp Rammos
6: *
7: */
8: public class ValueNotInRangeOfTypeException extends Exception {
9:
10:         /**
11:          *
12:          */
13:         private static final long serialVersionUID = -1182997179451245125L;
14:
15:         /**
16:          * Constructor, just calls super(errorMesage).
17:          *
18:          * @param errorMessage
19:          * The message for the exception.
20:          */
21:         public ValueNotInRangeOfTypeException(final String errorMessage) {
22:                 super(errorMessage);
23:         }
24:
25: }