shikeying
2024-01-11 3b67e947e36133e2a40eb2737b15ea375e157ea0
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
28
29
30
31
package com.walker.jdbc.generator;
 
/**
 * 应用程序基础运行异常定义,任何业务相关的运行异常定义必须继承该对象。
 * @author shikeying
 *
 */
public class GenerateException extends RuntimeException {
 
    /**
     *
     */
    private static final long serialVersionUID = -5785259349421994620L;
    private static final String ERROR_1 = "应用程序发生已知运行。";
 
    public GenerateException(){
        super(ERROR_1);
    }
 
    public GenerateException(String msg){
        super(msg);
    }
 
    public GenerateException(Throwable cause){
        super("error", cause);
    }
 
    public GenerateException(String msg, Throwable cause){
        super(msg, cause);
    }
}