fwq
2024-09-27 9436a044624dfc8ab027a5345d9814d29a0f74f3
提交 | 用户 | age
826b66 1 package com.hx.exception;
C 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 }