OWL ITS + 탐지시스템(인터넷 진흥원)
이민희
2022-01-10 e992e999b4de82ed5e727e5bf37bfc081c417ca5
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
package kr.wisestone.owl.exception;
 
import kr.wisestone.owl.vo.MessageVo;
 
public class ApiParameterException extends OwlRuntimeException {
    private static final long serialVersionUID = 1L;
 
    public ApiParameterException() {
        super();
    }
 
    public ApiParameterException(String code, final String message,
                               final Throwable cause) {
        super(code, message, cause);
        this.code = code;
    }
 
    public ApiParameterException(String code, final String message) {
        super(message);
        this.code = code;
    }
 
    public ApiParameterException(MessageVo message) {
        super(message.getMessage());
        this.code = message.getCode();
    }
 
    public ApiParameterException(Exception e) {
        super(e);
    }
 
    public ApiParameterException(String code) {
        this.code = code;
    }
 
    public ApiParameterException(String code, Exception e) {
        super(e);
        this.code = code;
    }
}