Clover coverage report -
Coverage timestamp: Sat Jul 7 2007 16:41:13 CEST
file stats: LOC: 22   Methods: 1
NCLOC: 5   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
RmiUtilException.java - 0% 0% 0%
coverage
 1    /**
 2    * JTRunner is free software; you can redistribute it and/or modify it under the
 3    * terms of the GNU General Public License as published by the Free Software
 4    * Foundation; either version 2, or (at your option) any later version.
 5    */
 6   
 7    package jtr.remote.utils;
 8   
 9    /**
 10    * This unchecked exception is thrown whenever an unrecoverable exception
 11    * is met by the <code>RmiUtil</code> class.
 12    *
 13    * @author frusso
 14    * @version 4.0
 15    * @since 4.0
 16    */
 17    public class RmiUtilException extends RuntimeException {
 18   
 19  0 public RmiUtilException(String msg, Throwable cause) {
 20  0 super(msg,cause);
 21    }
 22    }