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 Summary
ConstructorsConstructorDescriptionGeneralReplayException
(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 Summary
Modifier and TypeMethodDescriptionReturns the test object, on which the replay failed.Methods inherited from class com.hp.lft.sdk.GeneralLeanFtException
getErrorCode
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
GeneralReplayException
Constructs a new GeneralReplayException with the test object, on which the replay failed.- Parameters:
testObject
- the test object, on which the replay failed.
-
GeneralReplayException
Constructs 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.
-
GeneralReplayException
Constructs 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
-
getTestObject
Returns the test object, on which the replay failed.- Returns:
- the test object, on which the replay failed.
-