org.jtiger.framework
Class RunnerException

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

public final class RunnerException
extends Exception

An exception that may be thrown during the creation or execution of test fixture classes.

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

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

RunnerException

public RunnerException()
Create a default RunnerException.


RunnerException

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

Parameters:
message - The message of the RunnerException.

RunnerException

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

Parameters:
cause - The cause of the RunnerException.

RunnerException

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

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