Table of Contents

Class VectorizationException

Namespace
FoundationaLLM.Common.Exceptions
Assembly
FoundationaLLM.Common.dll

Represents errors that occur during the vectorization process.

public class VectorizationException : Exception, ISerializable
Inheritance
VectorizationException
Implements
Inherited Members
Extension Methods

Constructors

VectorizationException()

Initializes a new instance of the VectorizationException class with a default message.

public VectorizationException()

VectorizationException(string?)

Initializes a new instance of the VectorizationException class with its message set to message.

public VectorizationException(string? message)

Parameters

message string

A string that describes the error.

VectorizationException(string?, Exception?)

Initializes a new instance of the VectorizationException class with its message set to message.

public VectorizationException(string? message, Exception? innerException)

Parameters

message string

A string that describes the error.

innerException Exception

The exception that is the cause of the current exception.