fwq
2023-10-26 a30695d15a46ef43dc59e4d1c7ddd948d16094a0
1
2
3
4
5
6
7
8
9
10
11
12
package com.hx.exception;
 
/** 参数异常
 * @author ChenJiaHe
 * @Date 2020-06-19
 */
public class ParamException extends RuntimeException {
 
    public ParamException(String message) {
        super(message);
    }
}