fwq
2022-06-17 32e62c64b2e384d11443cb4ae90177d5664dc8d8
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);
    }
}