E1ED922C1E9526DD63272D7EC5C6CB77
2020-10-10 1887bdfef6d5d79374b8199f7865058b69ae138d
提交 | 用户 | age
5c5945 1 package com.hx.exception;
E 2
3 /** 参数异常
4  * @author ChenJiaHe
5  * @Date 2020-06-19
6  */
7 public class ParamException extends RuntimeException {
8
9     public ParamException(String message) {
10         super(message);
11     }
12 }