Clover coverage report -
Coverage timestamp: Thu Jul 5 2007 20:02:32 EDT
file stats: LOC: 27   Methods: 3
NCLOC: 17   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
MarshallingException.java - 0% 0% 0%
coverage
 1    package org.jboss.cache.marshall;
 2   
 3    /**
 4    * Thrown when there is an exception in marshalling.
 5    *
 6    * @author Ben Wang 8-2005
 7    */
 8    public class MarshallingException extends Exception
 9    {
 10   
 11    private static final long serialVersionUID = -5991339859063633060L;
 12   
 13  0 public MarshallingException()
 14    {
 15  0 super();
 16    }
 17   
 18  0 public MarshallingException(String msg)
 19    {
 20  0 super(msg);
 21    }
 22   
 23  0 public MarshallingException(String msg, Throwable cause)
 24    {
 25  0 super(msg, cause);
 26    }
 27    }