Partager via


VectorStoreOperationException Constructors

Definition

Overloads

VectorStoreOperationException()

Initializes a new instance of the VectorStoreOperationException class.

VectorStoreOperationException(String)

Initializes a new instance of the VectorStoreOperationException class with a specified error message.

VectorStoreOperationException(String, Exception)

Initializes a new instance of the VectorStoreOperationException class with a specified error message and a reference to the inner exception that is the cause of this exception.

VectorStoreOperationException()

Initializes a new instance of the VectorStoreOperationException class.

public VectorStoreOperationException ();
Public Sub New ()

Applies to

VectorStoreOperationException(String)

Initializes a new instance of the VectorStoreOperationException class with a specified error message.

public VectorStoreOperationException (string? message);
new Microsoft.SemanticKernel.Data.VectorStoreOperationException : string -> Microsoft.SemanticKernel.Data.VectorStoreOperationException
Public Sub New (message As String)

Parameters

message
String

The error message that explains the reason for the exception.

Applies to

VectorStoreOperationException(String, Exception)

Initializes a new instance of the VectorStoreOperationException class with a specified error message and a reference to the inner exception that is the cause of this exception.

public VectorStoreOperationException (string? message, Exception? innerException);
new Microsoft.SemanticKernel.Data.VectorStoreOperationException : string * Exception -> Microsoft.SemanticKernel.Data.VectorStoreOperationException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

The error message that explains the reason for the exception.

innerException
Exception

The exception that is the cause of the current exception, or a null reference if no inner exception is specified.

Applies to