public class UnboundVariableException extends RuntimeException { /** * @param name * @SBGen Constructor */ public UnboundVariableException(String name) { super (name + " is unbounded in the given environment."); } }