Clover coverage report -
Coverage timestamp: Thu Jul 5 2007 20:02:32 EDT
file stats: LOC: 17   Methods: 1
NCLOC: 9   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
IncorrectCacheListenerException.java - 100% 100% 100%
coverage
 1    package org.jboss.cache.notifications;
 2   
 3    import org.jboss.cache.CacheException;
 4   
 5    /**
 6    * Thrown when an incorrectly annotated class is added as a cache listener using the {@link org.jboss.cache.Cache#addCacheListener(Object)} API.
 7    *
 8    * @author <a href="mailto:manik@jboss.org">Manik Surtani</a>
 9    * @since 2.0.0
 10    */
 11    public class IncorrectCacheListenerException extends CacheException
 12    {
 13  14 public IncorrectCacheListenerException(String s)
 14    {
 15  14 super(s);
 16    }
 17    }