Clover coverage report - PMD - 3.7
Coverage timestamp: Wed May 31 2006 09:25:59 EDT
file stats: LOC: 19   Methods: 2
NCLOC: 9   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
LinkerException.java - 0% 0% 0%
coverage
 1    /*
 2    * Created on 12.07.2004
 3    */
 4    package net.sourceforge.pmd.dfa;
 5   
 6    /**
 7    * @author raik
 8    */
 9    public class LinkerException extends Exception {
 10   
 11  0 public LinkerException() {
 12  0 super("An error occured by computing the data flow paths"); //TODO redefinition | accurate?
 13    }
 14   
 15  0 public LinkerException(String message) {
 16  0 super(message);
 17    }
 18   
 19    }