Coverage report

  %line %branch
com.ozacc.mail.xml.XMLBuildException
0% 
0% 

 1  
 package com.ozacc.mail.xml;
 2  
 
 3  
 /**
 4  
  * XML¥É¥­¥å¥á¥ó¥È¤ÎÀ¸À®¤Ë¼ºÇÔ¤·¤¿»?¤Ë¥¹¥ú½¼¤µ¤?¤?Îã³°¡£
 5  
  * 
 6  
  * @since 1.0
 7  
  * @author Tomohiro Otsuka
 8  
  * @version $Id: XMLBuildException.java,v 1.2 2004/09/13 07:08:11 otsuka Exp $
 9  
  */
 10  
 public class XMLBuildException extends RuntimeException {
 11  
 
 12  
 	/**
 13  
 	 * @param message 
 14  
 	 */
 15  
 	public XMLBuildException(String message) {
 16  0
 		super(message);
 17  0
 	}
 18  
 
 19  
 	/**
 20  
 	 * @param message
 21  
 	 * @param cause 
 22  
 	 */
 23  
 	public XMLBuildException(String message, Throwable cause) {
 24  0
 		super(message, cause);
 25  0
 	}
 26  
 }

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