Table of Contents

Class TextProcessingException

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

Represents an error in the tokenization process.

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

Constructors

TextProcessingException()

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

public TextProcessingException()

TextProcessingException(string?)

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

public TextProcessingException(string? message)

Parameters

message string

A string that describes the error.

TextProcessingException(string?, Exception?)

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

public TextProcessingException(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.