Skip to content

Package: TypeDoesNotExistException

TypeDoesNotExistException

nameinstructionbranchcomplexitylinemethod
TypeDoesNotExistException(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 TypeDoesNotExistException extends Exception {
9:         /**
10:          *
11:          */
12:         private static final long serialVersionUID = 28562124102831061L;
13:
14:         /**
15:          * Constructor, just calls super(errorMesage).
16:          *
17:          * @param errorMessage
18:          * The message for the exception.
19:          */
20:         public TypeDoesNotExistException(final String errorMessage) {
21:                 super(errorMessage);
22:         }
23: }