admin
2025-02-11 8cc47cfe4c6d6b48e62cf00f6cbd0951ec57c264
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.everyday.word.exception;
 
/**
 * @author hxh
 * @title: ParamsException
 * @description: 参数异常
 * @date 2025/2/11 15:44
 */
public class ParamsException extends BaseException {
    public ParamsException(int code, String message) {
        super(code, message);
    }
}