shikeying
2024-04-08 8c3f7605718d7b5b3f3fa6de8922c5ee132b0890
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);
    }
}