Skip to content

Package: PruefscriptException

PruefscriptException

nameinstructionbranchcomplexitylinemethod
PruefscriptException(Exception)
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%
PruefscriptException(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%

Coverage

1: package parser.nodes;
2:
3: /**
4: *
5: * @author group B5
6: *
7: */
8: public abstract class PruefscriptException extends Exception {
9:
10:         /**
11:          *
12:          */
13:         private static final long serialVersionUID = 2515962350356276457L;
14:
15:         /**
16:          * method PruefscriptException.
17:          *
18:          * @param text
19:          * String
20:          */
21:         public PruefscriptException(final String text) {
22:                 super(text);
23:         }
24:
25:         /**
26:          * method PruefscriptException.
27:          *
28:          * @param e
29:          * Exception
30:          */
31:         public PruefscriptException(final Exception e) {
32:                 super(e);
33:         }
34: }