Skip to content

Method: ModulNotFoundException(String, Exception)

1: /**
2: *
3: */
4: package kernelmodules;
5:
6: import reader.ReaderException;
7:
8: /**
9: * @author Hendrik
10: *
11: */
12: public class ModulNotFoundException extends ReaderException {
13:
14:         /**
15:          *
16:          */
17:         private static final long serialVersionUID = -6298257812411920348L;
18:
19:         /**
20:          * @param message
21:          * Meldung
22:          * @param causeE
23:          * Fehler
24:          */
25:         public ModulNotFoundException(final String message, final Exception causeE) {
26:                 super(message, causeE);
27:
28:         }
29:
30:         /**
31:          * @param string
32:          * Meldung.
33:          */
34:         public ModulNotFoundException(final String string) {
35:                 super(string);
36:
37:         }
38:
39: }