Skip to content

Method: VariableTypeDoesNotExistException(String)

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