Package com.hp.lft.sdk
Class ObjectCookieNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.hp.lft.sdk.GeneralLeanFtException
com.hp.lft.sdk.GeneralReplayException
com.hp.lft.sdk.ObjectCookieNotFoundException
- All Implemented Interfaces:
Serializable
The exception that is thrown when a test object cookie is not found in the server.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionObjectCookieNotFoundException
(TestObject testObject) Constructs a new ObjectCookieNotFoundException with the test object, whose cookie was not found.ObjectCookieNotFoundException
(TestObject testObject, int errorCode, String message) Constructs a new ObjectCookieNotFoundException with the test object, whose cookie was not found and the specified detail message and error code.ObjectCookieNotFoundException
(TestObject testObject, String message) Constructs a new ObjectCookieNotFoundException with the test object, whose cookie was not found 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
-
ObjectCookieNotFoundException
Constructs a new ObjectCookieNotFoundException with the test object, whose cookie was not found.- Parameters:
testObject
- the test object, whose cookie was not found.
-
ObjectCookieNotFoundException
Constructs a new ObjectCookieNotFoundException with the test object, whose cookie was not found and the specified detail message.- Parameters:
testObject
- the test object, whose cookie was not found.message
- the detail message.
-
ObjectCookieNotFoundException
Constructs a new ObjectCookieNotFoundException with the test object, whose cookie was not found and the specified detail message and error code.- Parameters:
testObject
- the test object, whose cookie was not found.errorCode
- the error code representing the error that occurred.message
- the detail message.
-