EMMA Coverage Report (generated Fri Jul 28 01:51:09 CEST 2006)
[all classes][org.jtiger.framework]

COVERAGE SUMMARY FOR SOURCE FILE [FixtureResultsHandlerException.java]

nameclass, %method, %block, %line, %
FixtureResultsHandlerException.java100% (1/1)100% (4/4)100% (16/16)100% (8/8)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class FixtureResultsHandlerException100% (1/1)100% (4/4)100% (16/16)100% (8/8)
FixtureResultsHandlerException (): void 100% (1/1)100% (3/3)100% (2/2)
FixtureResultsHandlerException (String): void 100% (1/1)100% (4/4)100% (2/2)
FixtureResultsHandlerException (String, Throwable): void 100% (1/1)100% (5/5)100% (2/2)
FixtureResultsHandlerException (Throwable): void 100% (1/1)100% (4/4)100% (2/2)

1/*
2 * JTiger Unit Testing Framework for J2SE 1.5
3 * Copyright (C) 2005 Tony Morris
4 *
5 * This software is licenced under the
6 * Common Public Licence version 1.0
7 * http://www.opensource.org/licenses/cpl1.0.php
8 *
9 * You received a copy of this licence with this software.
10 */
11package org.jtiger.framework;
12 
13/**
14 * An exception that may be thrown during the handling of test results.
15 *
16 * @see FixtureResultsHandler
17 * @author %javadoc.author.tag%
18 * @version %version%<br/>
19 *          <i>Build Number %build.number%</i><br/>
20 *          <i>Build Time %build.time% CET (GMT + 1)</i>
21 */
22public final class FixtureResultsHandlerException extends Exception
23{
24    /**
25     * Create a default <tt>FixtureResultsHandlerException</tt>.
26     */
27    public FixtureResultsHandlerException()
28    {
29 
30    }
31 
32    /**
33     * Create a <tt>FixtureResultsHandlerException</tt> with the given message.
34     *
35     * @param message The message of the <tt>FixtureResultsHandlerException</tt>.
36     */
37    public FixtureResultsHandlerException(final String message)
38    {
39        super(message);
40    }
41 
42    /**
43     * Create a <tt>FixtureResultsHandlerException</tt> with the given cause.
44     *
45     * @param cause The cause of the <tt>FixtureResultsHandlerException</tt>.
46     */
47    public FixtureResultsHandlerException(final Throwable cause)
48    {
49        super(cause);
50    }
51 
52    /**
53     * Create a <tt>FixtureResultsHandlerException</tt> with the given message and cause.
54     *
55     * @param message The message of the <tt>FixtureResultsHandlerException</tt>.
56     * @param cause The cause of the <tt>FixtureResultsHandlerException</tt>.
57     */
58    public FixtureResultsHandlerException(final String message, final Throwable cause)
59    {
60        super(message, cause);
61    }
62}

[all classes][org.jtiger.framework]
EMMA 2.0.5312 (C) Vladimir Roubtsov