renkang
2025-01-03 ccf28d1fed1aa2e5437dbe64b5133ba1cbde6ec7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package cn.emay.sdk.util.exception;
 
public class SDKParamsException extends Exception {
 
    private static final long serialVersionUID = 1L;
 
    public SDKParamsException() {
        super();
    }
 
    public SDKParamsException(String message) {
        super(message);
    }
 
    public SDKParamsException(Throwable throwable) {
        super(throwable);
    }
 
    public SDKParamsException(String message, Throwable throwable) {
        super(message, throwable);
    }
 
}