Package com.hp.lft.sdk.mobile
Class MobileReplayException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.hp.lft.sdk.GeneralLeanFtException
com.hp.lft.sdk.GeneralReplayException
com.hp.lft.sdk.mobile.MobileReplayException
- All Implemented Interfaces:
Serializable
Represents errors that occur while running tests on mobile applications.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionMobileReplayException
(TestObject testObject) Constructs a new MobileReplayException with the test object on which the replay failed.MobileReplayException
(TestObject testObject, int errorCode, String message) Constructs a new MobileReplayException with the test object on which the replay failed, the error code, and the specified detail message.MobileReplayException
(TestObject testObject, String message) Constructs a new MobileReplayException with the test object on which the replay failed and the specified detail message. -
Method Summary
Methods inherited from class com.hp.lft.sdk.GeneralReplayException
getTestObject
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
-
MobileReplayException
Constructs a new MobileReplayException with the test object on which the replay failed.- Parameters:
testObject
- the test object on which the replay failed.
-
MobileReplayException
Constructs a new MobileReplayException 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.
-
MobileReplayException
Constructs a new MobileReplayException with the test object on which the replay failed, the error code, and the specified detail message.- Parameters:
testObject
- the test object, on which the replay failed.errorCode
- the error code representing the error that occurred.message
- the detail message.
-