疯狂的狮子Li
2023-04-13 9c22f7a0d0d696a4e3ce0cb420328a8fb34cf264
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
package org.dromara.common.mail.utils;
 
import cn.hutool.core.exceptions.ExceptionUtil;
import cn.hutool.core.util.StrUtil;
 
/**
 * 邮件异常
 * @author xiaoleilu
 */
public class MailException extends RuntimeException{
    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);
    }
}