Clover coverage report - CRISPY - 1.1.1
Coverage timestamp: Mi Nov 15 2006 13:09:46 CET
file stats: LOC: 17   Methods: 1
NCLOC: 7   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
PropertiesLoadException.java - 100% 100% 100%
coverage
 1    package net.sf.crispy.properties;
 2   
 3    /**
 4    * Exception by loading the property file.
 5    *
 6    * @author Linke
 7    *
 8    */
 9    public class PropertiesLoadException extends RuntimeException {
 10   
 11    private static final long serialVersionUID = 1313877982424L;
 12   
 13  5 public PropertiesLoadException(String pvMsg, Throwable pvThrowable) {
 14  5 super(pvMsg, pvThrowable);
 15    }
 16   
 17    }