1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.monkeylessey.exception;
|
| /**
| * @author xp
| * @date 2022/12/7
| */
| public class ConfigErrorException extends BaseException {
|
| public ConfigErrorException(String msg, Throwable cause) {
| super(msg, cause);
| }
|
| public ConfigErrorException(String msg) {
| super(msg);
| }
|
| public ConfigErrorException(String msg, Integer code) {
| super(msg, code);
| }
| }
|
|