com.mizhousoft.commons.mail.IMailException Maven / Gradle / Ivy
package com.mizhousoft.commons.mail;
import com.mizhousoft.commons.data.NestedException;
/**
* 异常
*
* @version
*/
public class IMailException extends NestedException
{
private static final long serialVersionUID = -30437775029391866L;
/**
* 构造函数
*
* @param errorCode
* @param message
* @param throwable
*/
public IMailException(String errorCode, String message, Throwable throwable)
{
super(errorCode, message, throwable);
}
/**
* 构造函数
*
* @param errorCode
* @param message
*/
public IMailException(String errorCode, String message)
{
super(errorCode, message);
}
/**
* 构造函数
*
* @param errorCode
* @param codeParams
* @param message
* @param throwable
*/
public IMailException(String errorCode, String[] codeParams, String message, Throwable throwable)
{
super(errorCode, codeParams, message, throwable);
}
/**
* 构造函数
*
* @param errorCode
* @param codeParams
* @param message
*/
public IMailException(String errorCode, String[] codeParams, String message)
{
super(errorCode, codeParams, message);
}
/**
* 构造函数
*
* @param message
* @param throwable
*/
public IMailException(String message, Throwable throwable)
{
super(message, throwable);
}
/**
* 构造函数
*
* @param message
*/
public IMailException(String message)
{
super(message);
}
}