ChenJiaHe
2020-11-25 db7fc9f145beb76bbef19b1812d63d2ffc2d0df9
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);
    }
}