Table of Contents

Class ItemNotFoundException

Represents the Not Found Item error that occurs while running a TE testing project.

Namespace: HP.LFT.SDK.TE
Assembly: HP.LFT.SDK.dll
Syntax
public class ItemNotFoundException : GeneralReplayException, ISerializable, _Exception

Constructors

ItemNotFoundException(GeneralReplayException)

Initializes a new instance of the ItemNotFoundException class with the test object on which the run error occurred, a specified error message and a reference to the inner exception that is the cause of this exception.

Declaration
public ItemNotFoundException(GeneralReplayException exception)
Parameters
Type Name Description
GeneralReplayException exception

The exception that is the cause of the current exception.

ItemNotFoundException(ITestObject, int, string)

Initializes a new instance of the ItemNotFoundException class with the test object on which the run error occurred, a specified error message and an error code associated with this exception.

Declaration
public ItemNotFoundException(ITestObject testObject, int errorCode, string message)
Parameters
Type Name Description
ITestObject testObject

The test object on which the run error occurred.

int errorCode

The error code associated with this exception.

string message

The error message that explains the reason for the exception.

ItemNotFoundException(ITestObject, string)

Initializes a new instance of the ItemNotFoundException class with the test object on which the run error occurred and a specified error message.

Declaration
public ItemNotFoundException(ITestObject testObject, string message)
Parameters
Type Name Description
ITestObject testObject

The test object on which the run error occurred.

string message

The error message that explains the reason for the exception.

ItemNotFoundException(ITestObject, string, Exception)

Initializes a new instance of the ItemNotFoundException class with the test object on which the run error occurred, a specified error message and a reference to the inner exception that is the cause of this exception.

Declaration
public ItemNotFoundException(ITestObject testObject, string message, Exception exception)
Parameters
Type Name Description
ITestObject testObject

The test object on which the run error occurred.

string message

The error message that explains the reason for the exception.

Exception exception

The exception that is the cause of the current exception.

ItemNotFoundException(SerializationInfo, StreamingContext)

Initializes a new instance of the ItemNotFoundException class with serialized data.

Declaration
protected ItemNotFoundException(SerializationInfo info, StreamingContext context)
Parameters
Type Name Description
SerializationInfo info

The SerializationInfo that holds the serialized object data about the exception being thrown.

StreamingContext context

The StreamingContext that contains contextual information about the source or destination.

Implements

ISerializable
_Exception