Partager via


VectorStoreException Constructors

Definition

Overloads

VectorStoreException()

Initializes a new instance of the VectorStoreException class.

VectorStoreException(String)

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

VectorStoreException(String, Exception)

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

VectorStoreException()

Initializes a new instance of the VectorStoreException class.

protected VectorStoreException ();
Protected Sub New ()

Applies to

VectorStoreException(String)

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

protected VectorStoreException (string? message);
new Microsoft.SemanticKernel.Data.VectorStoreException : string -> Microsoft.SemanticKernel.Data.VectorStoreException
Protected Sub New (message As String)

Parameters

message
String

The error message that explains the reason for the exception.

Applies to

VectorStoreException(String, Exception)

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

protected VectorStoreException (string? message, Exception? innerException);
new Microsoft.SemanticKernel.Data.VectorStoreException : string * Exception -> Microsoft.SemanticKernel.Data.VectorStoreException
Protected 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