org.jtiger.framework
Class FixtureResultsHandlerException

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

public final class FixtureResultsHandlerException
extends Exception

An exception that may be thrown during the handling of test results.

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

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

FixtureResultsHandlerException

public FixtureResultsHandlerException()
Create a default FixtureResultsHandlerException.


FixtureResultsHandlerException

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

Parameters:
message - The message of the FixtureResultsHandlerException.

FixtureResultsHandlerException

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

Parameters:
cause - The cause of the FixtureResultsHandlerException.

FixtureResultsHandlerException

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

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