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