Clover coverage report - Alipes Project - 0.1
Coverage timestamp: Sat Sep 10 2005 21:25:58 BST
file stats: LOC: 55   Methods: 4
NCLOC: 15   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
MessengerException.java - 100% 100% 100%
coverage
 1    /* $Id: MessengerException.java,v 1.1 2004/03/18 15:21:54 johndavidtaylor Exp $
 2    * Created on Mar 14, 2004 by jdt
 3    * The alipes project
 4    * (c) 2004
 5    *
 6    */
 7    package org.abraracourcix.alipes.common.messaging;
 8   
 9    /**
 10    * Exception that might be thrown by a Messenger
 11    *
 12    * @author jdt
 13    */
 14    public class MessengerException extends Exception {
 15    /**
 16    * Constructor
 17    *
 18    */
 19  1 public MessengerException() {
 20  1 super();
 21    }
 22    /**
 23    * Constructor
 24    * @param arg0 description
 25    */
 26  1 public MessengerException(final String arg0) {
 27  1 super(arg0);
 28    }
 29    /**
 30    * Constructor
 31    * @param arg0 cause
 32    */
 33  1 public MessengerException(final Throwable arg0) {
 34  1 super(arg0);
 35    }
 36    /**
 37    * Constructor
 38    * @param arg0 description
 39    * @param arg1 cause
 40    */
 41  1 public MessengerException(final String arg0, final Throwable arg1) {
 42  1 super(arg0, arg1);
 43    }
 44    }
 45   
 46   
 47    /*
 48    * $Log: MessengerException.java,v $
 49    * Revision 1.1 2004/03/18 15:21:54 johndavidtaylor
 50    * Copied across from incubation in beanpeeler
 51    *
 52    * Revision 1.1 2004/03/14 16:26:49 johndavidtaylor
 53    * refactored email
 54    *
 55    */