Click or drag to resize
SearchIndexException Constructor (String, String, Exception)
Initializes a new instance of the SearchIndexException class for given indexName with a specified error message and a reference to the inner exception that is the cause of this exception.

Namespace: CMS.Search
Assembly: CMS.Search (in CMS.Search.dll) Version: 13.0.131
Syntax
C#
public SearchIndexException(
	string indexName,
	string message,
	Exception innerException
)

Parameters

indexName
Type: SystemString
Codename of the SearchIndexInfo the exception is related to.
message
Type: SystemString
The message that describes the error.
innerException
Type: SystemException
The exception that is the cause of the current exception, or a null reference if no inner exception is specified.
See Also