package com.walker.semantics; /** * 描述:语法分析异常定义 * @author 时克英 * @date 2020年11月11日 上午11:48:29 */ public class SemanticsException extends Exception { /** * */ private static final long serialVersionUID = -480502681876544674L; public SemanticsException(){ super(); } public SemanticsException(String text){ super(text); } public SemanticsException(String text, Throwable cause){ super(text, cause); } }