Coverage report

  %line %branch
com.ozacc.mail.fetch.MailFetchException
0% 
0% 

 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  0
 		super(message);
 18  0
 	}
 19  
 
 20  
 	/**
 21  
 	 * @param message
 22  
 	 * @param cause 
 23  
 	 */
 24  
 	public MailFetchException(String message, Throwable cause) {
 25  0
 		super(message, cause);
 26  0
 	}
 27  
 
 28  
 }

This report is generated by jcoverage, Maven and Maven JCoverage Plugin.