Skip to content

Package: EntryNotFoundException

EntryNotFoundException

nameinstructionbranchcomplexitylinemethod
EntryNotFoundException(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 EntryNotFoundException extends KernelModulException {
11:         /**
12:          *
13:          */
14:         private static final long serialVersionUID = -7632119172703310563L;
15:
16:         /**
17:          * constructor.
18:          *
19:          * @param string
20:          * . ErrorMsg
21:          */
22:         public EntryNotFoundException(final String string) {
23:                 super(string);
24:
25:         }
26:
27: }