Skip to contentMethod: ModuleNotFoundException(String)
      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: }