View Javadoc

1   package com.ozacc.mail.fetch;
2   
3   import com.ozacc.mail.MailException;
4   
5   /***
6    * メールの受信に失敗した時にスローされる例外。
7    * 
8    * @author Tomohiro Otsuka
9    * @version $Id: MailFetchException.java,v 1.1.2.1 2004/10/24 10:14:31 otsuka Exp $
10   */
11  public class MailFetchException extends MailException {
12  
13  	/***
14  	 * @param message 
15  	 */
16  	public MailFetchException(String message) {
17  		super(message);
18  	}
19  
20  	/***
21  	 * @param message
22  	 * @param cause 
23  	 */
24  	public MailFetchException(String message, Throwable cause) {
25  		super(message, cause);
26  	}
27  
28  }