Skip to contentMethod: VariableDoesNotExistException(String)
1: package pruefskript.parser.exceptions;
2:
3: /**
4: * Exception for not existing Variables.
5: *
6: * @author Phil
7: *
8: */
9: public class VariableDoesNotExistException extends CheckScriptException {
10:         /**
11:          *
12:          */
13:         private static final long serialVersionUID = 7419364674901263579L;
14:
15:         /**
16:          * Exception for not existing Variables.
17:          *
18:          * @param string
19:          * Name und Index der gesuchten nicht existenten Variable.
20:          */
21:         public VariableDoesNotExistException(final String string) {
22:                 super(string);
23:         }
24:
25: }