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 | */ |
11 | package 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 | */ |
22 | public 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 | } |