Package: EntryNotFoundException
EntryNotFoundException
| name | instruction | branch | complexity | line | method | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| EntryNotFoundException(String) | 
  | 
  | 
  | 
  | 
  | 
||||||||||||||||||||
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: }