Skip to content

Package: ModuleNotFoundException

ModuleNotFoundException

nameinstructionbranchcomplexitylinemethod
ModuleNotFoundException(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 kernelmodules;
5:
6: /**
7: * @author Hendrik
8: *
9: */
10: public class ModuleNotFoundException extends KernelModulException {
11:         /**
12:          * constructor.
13:          *
14:          * @param string
15:          * errorMsg
16:          */
17:         public ModuleNotFoundException(final String string) {
18:                 super(string);
19:         }
20:
21:         /**
22:          *
23:          */
24:         private static final long serialVersionUID = -5885295074236990546L;
25:
26: }