shikeying
2024-02-22 0632a02beb78705dc93b760c7bfa86ecedacb970
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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);
    }
}