Package com.hp.lft.sdk
Class GeneralReplayException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.hp.lft.sdk.GeneralLeanFtException
com.hp.lft.sdk.GeneralReplayException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- ErrorFieldProtectedException,- HllapiNotFoundException,- HllapiOperationNotSupportedException,- IllegalOperationException,- ItemNotFoundException,- MobileReplayException,- NoConnectionException,- ObjectCookieNotFoundException,- OutOfRangeException,- ReplayArgumentOutOfRangeException,- ReplayBrowserNotInstalledException,- ReplayItemNotFoundException,- ReplayItemNotUniqueException,- ReplayObjectDisabledException,- ReplayObjectNotFoundException,- ReplayObjectNotUniqueException,- ReplayObjectNotVisibleException,- ReplayParentMissingException,- ReplayTimeoutException,- RuleNotFoundException,- TextTooLongException,- UndefinedKeyCombinationException
Represents general errors that occur during replay stage of the application.
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionGeneralReplayException(TestObject testObject) Constructs a new GeneralReplayException with the test object, on which the replay failed.GeneralReplayException(TestObject testObject, int errorCode, String message) Constructs a new GeneralReplayException with the test object, on which the replay failed and the specified detail message and error code.GeneralReplayException(TestObject testObject, String message) Constructs a new GeneralReplayException with the test object, on which the replay failed and the specified detail message.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the test object, on which the replay failed.Methods 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- 
GeneralReplayExceptionConstructs a new GeneralReplayException with the test object, on which the replay failed.- Parameters:
- testObject- the test object, on which the replay failed.
 
- 
GeneralReplayExceptionConstructs a new GeneralReplayException 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.
 
- 
GeneralReplayExceptionConstructs a new GeneralReplayException 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.
 
 
- 
- 
Method Details- 
getTestObjectReturns the test object, on which the replay failed.- Returns:
- the test object, on which the replay failed.
 
 
-