办学质量监测教学评价系统
康鲁杰
6 天以前 bb1a2bc67e6e5751dc4b95760ffbe449af35fa82
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package org.ruoyi.common.mail.utils;
 
import cn.hutool.core.exceptions.ExceptionUtil;
import cn.hutool.core.util.StrUtil;
 
import java.io.Serial;
 
/**
 * 邮件异常
 *
 * @author xiaoleilu
 */
public class MailException extends RuntimeException {
    @Serial
    private static final long serialVersionUID = 8247610319171014183L;
 
    public MailException(Throwable e) {
        super(ExceptionUtil.getMessage(e), e);
    }
 
    public MailException(String message) {
        super(message);
    }
 
    public MailException(String messageTemplate, Object... params) {
        super(StrUtil.format(messageTemplate, params));
    }
 
    public MailException(String message, Throwable throwable) {
        super(message, throwable);
    }
 
    public MailException(String message, Throwable throwable, boolean enableSuppression, boolean writableStackTrace) {
        super(message, throwable, enableSuppression, writableStackTrace);
    }
 
    public MailException(Throwable throwable, String messageTemplate, Object... params) {
        super(StrUtil.format(messageTemplate, params), throwable);
    }
}