Clover coverage report - brownies library - 1.0-beta-1
Coverage timestamp: 月 8 16 2004 17:14:42 GMT+09:00
file stats: LOC: 45   Methods: 4
NCLOC: 15   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
ServletContextRuntimeException.java - 0% 0% 0%
coverage
 1   
 /*
 2   
  * brownies and its relative products are published under the terms
 3   
  * of the Apache Software License.
 4   
  * 
 5   
  * Created on 2004/04/09 14:38:49
 6   
  */
 7   
 package org.asyrinx.brownie.servlet;
 8   
 
 9   
 import net.sf.hibernate.exception.NestableRuntimeException;
 10   
 
 11   
 /**
 12   
  * @author akima
 13   
  */
 14   
 public class ServletContextRuntimeException extends NestableRuntimeException {
 15   
 
 16   
     /**
 17   
      *  
 18   
      */
 19  0
     public ServletContextRuntimeException() {
 20  0
         super();
 21   
     }
 22   
 
 23   
     /**
 24   
      * @param arg0
 25   
      */
 26  0
     public ServletContextRuntimeException(String arg0) {
 27  0
         super(arg0);
 28   
     }
 29   
 
 30   
     /**
 31   
      * @param arg0
 32   
      */
 33  0
     public ServletContextRuntimeException(Throwable arg0) {
 34  0
         super(arg0);
 35   
     }
 36   
 
 37   
     /**
 38   
      * @param arg0
 39   
      * @param arg1
 40   
      */
 41  0
     public ServletContextRuntimeException(String arg0, Throwable arg1) {
 42  0
         super(arg0, arg1);
 43   
     }
 44   
 
 45   
 }