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
32
33
package com.walker.infrastructure;
 
import com.walker.infrastructure.core.NestedRuntimeException;
 
/**
 * 应用程序基础运行异常定义,任何业务相关的运行异常定义必须继承该对象。
 * @author shikeying
 *
 */
public class ApplicationRuntimeException extends NestedRuntimeException {
 
    /**
     * 
     */
    private static final long serialVersionUID = -5785259349421994617L;
    private static final String ERROR_1 = "应用程序发生已知运行。";
    
    public ApplicationRuntimeException(){
        super(ERROR_1);
    }
    
    public ApplicationRuntimeException(String msg){
        super(msg);
    }
 
    public ApplicationRuntimeException(Throwable cause){
        super("error", cause);
    }
 
    public ApplicationRuntimeException(String msg, Throwable cause){
        super(msg, cause);
    }
}