chenjiahe
2022-06-15 11f9478b32b710e022c328972fd2e07c72a62df8
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);
    }
}