package code.table;

/**
 * Description of the Class
 *
 * @author Sergio Antoy
 * @since June 17, 2003
 */
public class UndefinedSymbol extends RuntimeException {
    /**
     * Constructor for the UndefinedSymbol object
     *
     * @param name Description of the Parameter
     */
    public UndefinedSymbol(String name) {
        super(name);
    }
}

