| | |
| | | |
| | | /** |
| | | * 邮件异常 |
| | | * |
| | | * @author xiaoleilu |
| | | */ |
| | | public class MailException extends RuntimeException{ |
| | | @Serial |
| | | public class MailException extends RuntimeException { |
| | | @Serial |
| | | private static final long serialVersionUID = 8247610319171014183L; |
| | | |
| | | public MailException(Throwable e) { |
| | | super(ExceptionUtil.getMessage(e), e); |
| | | } |
| | | public MailException(Throwable e) { |
| | | super(ExceptionUtil.getMessage(e), e); |
| | | } |
| | | |
| | | public MailException(String message) { |
| | | super(message); |
| | | } |
| | | public MailException(String message) { |
| | | super(message); |
| | | } |
| | | |
| | | public MailException(String messageTemplate, Object... params) { |
| | | super(StrUtil.format(messageTemplate, params)); |
| | | } |
| | | 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) { |
| | | super(message, throwable); |
| | | } |
| | | |
| | | public MailException(String message, Throwable throwable, boolean enableSuppression, boolean writableStackTrace) { |
| | | super(message, throwable, enableSuppression, writableStackTrace); |
| | | } |
| | | 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); |
| | | } |
| | | public MailException(Throwable throwable, String messageTemplate, Object... params) { |
| | | super(StrUtil.format(messageTemplate, params), throwable); |
| | | } |
| | | } |