fwq
2022-05-09 8fcea52f023500d5ada8afc533989592493e79ce
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);
    }
}