Skip to content

Package: ModulNotFoundException

ModulNotFoundException

nameinstructionbranchcomplexitylinemethod
ModulNotFoundException(String)
M: 4 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%
ModulNotFoundException(String, Exception)
M: 5 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%

Coverage

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: }