package eu.wietsevenema.lang.oberon.exceptions;
public class VariableUndefinedException extends Exception {
public VariableUndefinedException(String string) {
super(string);
}
private static final long serialVersionUID = 145911420985230932L;
}