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