Package com.hp.lft.sdk
Class ReplayObjectNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.hp.lft.sdk.GeneralLeanFtException
com.hp.lft.sdk.GeneralReplayException
com.hp.lft.sdk.ReplayObjectNotFoundException
- All Implemented Interfaces:
- Serializable
The exception that is thrown when a test object with the given description is not found in the AUT.
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionReplayObjectNotFoundException(TestObject testObject) Constructs a new ReplayObjectNotFoundException with the test object, on which the replay failed.ReplayObjectNotFoundException(TestObject testObject, int errorCode, String message) Constructs a new ReplayObjectNotFoundException with the test object, on which the replay failed and the specified detail message and error code.ReplayObjectNotFoundException(TestObject testObject, String message) Constructs a new ReplayObjectNotFoundException with the test object, on which the replay failed and the specified detail message.
- 
Method SummaryMethods inherited from class com.hp.lft.sdk.GeneralReplayExceptiongetTestObjectMethods inherited from class com.hp.lft.sdk.GeneralLeanFtExceptiongetErrorCodeMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
ReplayObjectNotFoundExceptionConstructs a new ReplayObjectNotFoundException with the test object, on which the replay failed.- Parameters:
- testObject- the test object, on which the replay failed.
 
- 
ReplayObjectNotFoundExceptionConstructs a new ReplayObjectNotFoundException with the test object, on which the replay failed and the specified detail message.- Parameters:
- testObject- the test object, on which the replay failed.
- message- the detail message.
 
- 
ReplayObjectNotFoundExceptionConstructs a new ReplayObjectNotFoundException with the test object, on which the replay failed and the specified detail message and error code.- Parameters:
- testObject- the test object, on which the replay failed.
- errorCode- the error code representing the error that occurred.
- message- the detail message.
 
 
-