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