Package: KernelModulException
KernelModulException
| name | instruction | branch | complexity | line | method | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| KernelModulException(String) | 
  | 
  | 
  | 
  | 
  | 
||||||||||||||||||||
Coverage
1: /**
2:  * 
3:  */
4: package kernelmodules;
5: 
6: /**
7:  * @author Hendrik
8:  * 
9:  */
10: public class KernelModulException extends Exception {
11:         /**
12:          * constructor.
13:          * 
14:          * @param string
15:          *            errorMsg
16:          */
17:         public KernelModulException(final String string) {
18:                 super(string);
19:         }
20: 
21:         /**
22:          * 
23:          */
24:         private static final long serialVersionUID = -5144984788112780414L;
25: 
26: }