公告板
版本库
filestore
活动
搜索
登录
陈家和
/
hx_common
新版
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
新增请求方法
chenjiahe
2022-03-31
b5bfe58beeeeb8343bdea6a9412f8f6704b67633
[~chenjiahe/hx_common.git]
/
src
/
main
/
java
/
com
/
hx
/
exception
/
ParamException.java
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);
}
}