Skip to content

Package: VariableTypeDoesNotExistException

VariableTypeDoesNotExistException

nameinstructionbranchcomplexitylinemethod
VariableTypeDoesNotExistException(String)
M: 0 C: 4
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 2
100%
M: 0 C: 1
100%

Coverage

1: package pruefskript.parser.exceptions;
2:
3: /**
4: *
5: * @author Phil
6: *
7: */
8: public class VariableTypeDoesNotExistException extends CheckScriptException {
9:         /**
10:          *
11:          */
12:         private static final long serialVersionUID = 7895600118003999393L;
13:
14:         /**
15:          *
16:          * @param text
17:          * .
18:          */
19:         public VariableTypeDoesNotExistException(final String text) {
20:                 super(text);
21:
22:         }
23:
24: }