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

com.ozacc.mail.MailSendException Maven / Gradle / Ivy

The newest version!
package com.ozacc.mail;

/**
 * メール送信に失敗した時にスローされる例外。
 * 
 * @since 1.0
 * @author Tomohiro Otsuka
 * @version $Id: MailSendException.java,v 1.2 2004/09/13 07:08:41 otsuka Exp $
 */
public class MailSendException extends MailException {

	private static final long serialVersionUID = -8590978542027055148L;

	/**
	 * @param message
	 */
	public MailSendException(String message) {
		super(message);
	}

	/**
	 * @param message
	 * @param cause
	 */
	public MailSendException(String message, Throwable cause) {
		super(message, cause);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy