Coverage report

  %line %branch
com.ozacc.mail.MailException
100% 
100% 

 1  
 package com.ozacc.mail;
 2  
 
 3  
 /**
 4  
  * ¥á¡¼¥?´ØÏ¢Îã³°¤Îµ¬Ä?¥¯¥é¥¹¡£RuntimeException¤ò·Ñ¾µ¤·¤Æ¤¤¤Þ¤¹¡£
 5  
  * 
 6  
  * @since 1.0
 7  
  * @author Tomohiro Otsuka
 8  
  * @version $Id: MailException.java,v 1.2 2004/09/13 07:08:41 otsuka Exp $
 9  
  */
 10  
 public class MailException extends RuntimeException {
 11  
 
 12  
 	/**
 13  
 	 * @param message 
 14  
 	 */
 15  
 	public MailException(String message) {
 16  2
 		super(message);
 17  2
 	}
 18  
 
 19  
 	/**
 20  
 	 * @param message
 21  
 	 * @param cause 
 22  
 	 */
 23  
 	public MailException(String message, Throwable cause) {
 24  4
 		super(message, cause);
 25  4
 	}
 26  
 
 27  
 }

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