|
@@ -1,5 +1,6 @@
|
|
|
package cn.gygxzc.envir.core.entity;
|
|
|
|
|
|
+import cn.gygxzc.envir.core.ex.ParamMissException;
|
|
|
import com.baomidou.mybatisplus.core.toolkit.IdWorker;
|
|
|
import org.springframework.util.StringUtils;
|
|
|
|
|
@@ -156,13 +157,13 @@ public class MailEntity implements Serializable {
|
|
|
|
|
|
public void checkParams() throws RuntimeException {
|
|
|
if (!StringUtils.hasLength(to)) {
|
|
|
- throw new MailParamMissException("无发送对象!");
|
|
|
+ throw new ParamMissException("无发送对象!");
|
|
|
}
|
|
|
if (!StringUtils.hasLength(subject)) {
|
|
|
- throw new MailParamMissException("无邮件主题!");
|
|
|
+ throw new ParamMissException("无邮件主题!");
|
|
|
}
|
|
|
if (!StringUtils.hasLength(content)) {
|
|
|
- throw new MailParamMissException("无邮件内容!");
|
|
|
+ throw new ParamMissException("无邮件内容!");
|
|
|
}
|
|
|
}
|
|
|
|