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

COVERAGE SUMMARY FOR SOURCE FILE [RunnerException.java]

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

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class RunnerException100% (1/1)100% (4/4)100% (16/16)100% (8/8)
RunnerException (): void 100% (1/1)100% (3/3)100% (2/2)
RunnerException (String): void 100% (1/1)100% (4/4)100% (2/2)
RunnerException (String, Throwable): void 100% (1/1)100% (5/5)100% (2/2)
RunnerException (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 creation or execution of test fixture classes.
15 *
16 * @see FixturesRunner#run(FixturesRunnerConfig)
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 RunnerException extends Exception
23{
24    /**
25     * Create a default <tt>RunnerException</tt>.
26     */
27    public RunnerException()
28    {
29 
30    }
31 
32    /**
33     * Create a <tt>RunnerException</tt> with the given message.
34     *
35     * @param message The message of the <tt>RunnerException</tt>.
36     */
37    public RunnerException(final String message)
38    {
39        super(message);
40    }
41 
42    /**
43     * Create a <tt>RunnerException</tt> with the given cause.
44     *
45     * @param cause The cause of the <tt>RunnerException</tt>.
46     */
47    public RunnerException(final Throwable cause)
48    {
49        super(cause);
50    }
51 
52    /**
53     * Create a <tt>RunnerException</tt> with the given message and cause.
54     *
55     * @param message The message of the <tt>RunnerException</tt>.
56     * @param cause The cause of the <tt>RunnerException</tt>.
57     */
58    public RunnerException(final String message, final Throwable cause)
59    {
60        super(message, cause);
61    }
62 
63}

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