y_ys79
2024-01-05 e5840972b6b17ec03bfc1069a9cacfe0cef189c6
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
34
35
36
37
38
39
40
41
42
43
44
package com.qianwen.mdc.domain;
 
/**
 * 领域异常基类
 */
public class DomainException extends RuntimeException{
    
    
    public DomainException(String message) {
        super(message);
        // TODO Auto-generated constructor stub
    }
 
    public DomainException() {
        super();
        // TODO Auto-generated constructor stub
    }
 
    public DomainException(String message, Throwable cause) {
        super(message, cause);
        // TODO Auto-generated constructor stub
    }
 
    public DomainException(Throwable cause) {
        super(cause);
        // TODO Auto-generated constructor stub
    }
 
    private String errMessage;
    /**
     * 
     */
    private static final long serialVersionUID = 5878126650413834467L;
/*
    public DomainException(String msg) {
        this.errMessage = msg;
    }
 
    public String getErrMessage() {
        return errMessage;
    }
    */
    
}