Clover coverage report - Maven Clover report
Coverage timestamp: Sun Mar 18 2007 17:43:17 CET
file stats: LOC: 21   Methods: 3
NCLOC: 13   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ResourceNotFoundSystemException.java - 0% 0% 0%
coverage
 1    package com.agical.rdoc.core.exception;
 2   
 3    public class ResourceNotFoundSystemException extends ResourceSystemException {
 4   
 5    /**
 6    *
 7    */
 8    private static final long serialVersionUID = 1L;
 9   
 10  0 public ResourceNotFoundSystemException(String resource, Throwable cause) {
 11  0 super("The resource: "+resource+" could not be found!", cause);
 12    }
 13   
 14  0 public ResourceNotFoundSystemException(String resource) {
 15  0 super("The resource: "+resource+" could not be found!");
 16    }
 17   
 18  0 public ResourceNotFoundSystemException(Throwable cause) {
 19  0 super(cause);
 20    }
 21    }