公告板
版本库
filestore
活动
搜索
登录
陈家和
/
hx_common
新版
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
添加企业微信发送邮件方法
Andru
2023-11-03
a538020ae3d1af171816187a16ebb0072ea68892
[~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);
}
}