All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ailyr.tool.extra.mail.MailException Maven / Gradle / Ivy

The newest version!
package com.ailyr.tool.extra.mail;

import com.ailyr.tool.core.exceptions.ExceptionUtil;
import com.ailyr.tool.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(Throwable throwable, String messageTemplate, Object... params) {
		super(StrUtil.format(messageTemplate, params), throwable);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy