Clover coverage report - Maven Clover report
Coverage timestamp: Sun Mar 18 2007 17:43:17 CET
file stats: LOC: 19   Methods: 1
NCLOC: 10   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
RDocOutputException.java - 0% 0% 0%
coverage
 1    package com.agical.rdoc.core.exception;
 2   
 3   
 4    /**
 5    * @author brolund
 6    *
 7    * (c) 2005 Agical AB
 8    */
 9    public class RDocOutputException extends RDocSystemException {
 10    private static final long serialVersionUID = 1L;
 11   
 12  0 public RDocOutputException(String message, Object outputTarget, Exception e) {
 13  0 super( message +
 14    "\noutputTarget class is: " + outputTarget.getClass().getName() +
 15    "\noutputTarget toString: " + outputTarget +
 16    "\nException message is : " + e.getMessage(), e );
 17    }
 18   
 19    }