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);
| }
| }
|
|