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