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

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

There is a newer version: 2.0.0
Show newest version
package com.ozacc.mail;

/**
 * MimeMessageオブジェクトの生成に失敗した際にスローされる例外。
 * 
 * @since 1.0
 * @author Tomohiro Otsuka
 * @version $Id: MailBuildException.java,v 1.2 2004/09/13 07:08:41 otsuka Exp $
 */
public class MailBuildException extends MailException {

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy