Skip to content

Package: TypeExceptions

TypeExceptions

nameinstructionbranchcomplexitylinemethod
TypeExceptions(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: /**
2: *
3: */
4: package model.type;
5:
6: /**
7: * @author Hendrik
8: *
9: */
10: public abstract class TypeExceptions extends Exception {
11:
12:         /**
13:          *
14:          */
15:         private static final long serialVersionUID = -1443367423954144274L;
16:
17:         /**
18:          * @param msg
19:          * Error msg
20:          */
21:         public TypeExceptions(final String msg) {
22:                 super(msg);
23:
24:         }
25:
26: }