Clover coverage report - Replica - 1.0-Alpha
Coverage timestamp: Dom Fev 1 2004 17:00:58 WET
file stats: LOC: 69   Methods: 6
NCLOC: 24   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
NoSuchCommandException.java - 0% 0% 0%
coverage
 1   
 /*
 2   
  * Replica is published under the terms
 3   
  * of the Apache Software License.
 4   
  */
 5   
 package replica.command;
 6   
 
 7   
 
 8   
 /**
 9   
  *  Thown when a command is not found for a given action.
 10   
  * 
 11   
  *  <note>This is generally a non fatal exception, so it is modelled as a checked Exception.</note>
 12   
  * 
 13   
  * @author Pedro Costa
 14   
  * @author Helder Silva
 15   
  * @since 17/Jan/2004
 16   
  */
 17   
 public class NoSuchCommandException extends CommandException {
 18   
     
 19   
     /**
 20   
      * @param message
 21   
      */
 22  0
     public NoSuchCommandException(String message) {
 23  0
         super(message);
 24   
     }
 25   
 
 26   
     /**
 27   
      * @param cause
 28   
      */
 29  0
     public NoSuchCommandException(Throwable cause) {
 30  0
         super(cause);
 31   
     }
 32   
 
 33   
     /**
 34   
      * @param message
 35   
      * @param cause
 36   
      */
 37  0
     public NoSuchCommandException(String message, Throwable cause) {
 38  0
         super(message, cause);
 39   
     }
 40   
 
 41   
     /**
 42   
      * @param message
 43   
      * @param actionId
 44   
      */
 45  0
     public NoSuchCommandException(String message, String actionId) {
 46  0
         super(message, actionId);
 47   
     }
 48   
 
 49   
     /**
 50   
      * @param message
 51   
      * @param actionId
 52   
      * @param cause
 53   
      */
 54  0
     public NoSuchCommandException(
 55   
         String message,
 56   
         String actionId,
 57   
         Throwable cause) {
 58  0
         super(message, actionId, cause);
 59   
     }
 60   
 
 61   
     /**
 62   
      *  Default constructor.
 63   
      */
 64  0
     public NoSuchCommandException() {
 65  0
         super();
 66   
     }
 67   
     
 68   
 }
 69