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

com.ozacc.mail.fetch.MailFetchException Maven / Gradle / Ivy

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

import com.ozacc.mail.MailException;

/**
 * メールの受信に失敗した時にスローされる例外。
 * 
 * @author Tomohiro Otsuka
 * @version $Id: MailFetchException.java,v 1.1.2.1 2004/10/24 10:14:31 otsuka Exp $
 */
public class MailFetchException extends MailException {

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy