org.jtiger.framework
Class SetUpException

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

public final class SetUpException
extends Exception

An exception that may be thrown during the setting up 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:
SetUp, SetUpTearDown, Serialized Form

Constructor Summary
SetUpException()
          Create a default SetUpException.
SetUpException(String message)
          Create a SetUpException with the given message.
SetUpException(String message, Throwable cause)
          Create a SetUpException with the given message and cause.
SetUpException(Throwable cause)
          Create a SetUpException 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

SetUpException

public SetUpException()
Create a default SetUpException.


SetUpException

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

Parameters:
message - The message of the SetUpException.

SetUpException

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

Parameters:
cause - The cause of the SetUpException.

SetUpException

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

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