org.jtiger.framework
Class TearDownException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.jtiger.framework.TearDownException
All Implemented Interfaces:
Serializable

public final class TearDownException
extends Exception

An exception that may be thrown during the tearing down of a test case.

Version:
2.1
Build Number 0376
Build Time 2006-07-28 01:50.16.218 CET (GMT + 1)
Author:
Tony Morris
See Also:
TearDown, SetUpTearDown, Serialized Form

Constructor Summary
TearDownException()
          Create a default TearDownException.
TearDownException(String message)
          Create a TearDownException with the given message.
TearDownException(String message, Throwable cause)
          Create a TearDownException with the given message and cause.
TearDownException(Throwable cause)
          Create a TearDownException with the given cause.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TearDownException

public TearDownException()
Create a default TearDownException.


TearDownException

public TearDownException(String message)
Create a TearDownException with the given message.

Parameters:
message - The message of the TearDownException.

TearDownException

public TearDownException(Throwable cause)
Create a TearDownException with the given cause.

Parameters:
cause - The cause of the TearDownException.

TearDownException

public TearDownException(String message,
                         Throwable cause)
Create a TearDownException with the given message and cause.

Parameters:
message - The message of the TearDownException.
cause - The cause of the TearDownException.