Table of Contents

Constructor PromptTemplateException

Namespace
LMKit.TextGeneration.Prompts
Assembly
LM-Kit.NET.dll

PromptTemplateException(string)

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

public PromptTemplateException(string message)

Parameters

message string

The error message.

PromptTemplateException(string, int, int)

Initializes a new instance of the PromptTemplateException class with the specified error message, line, and column.

public PromptTemplateException(string message, int line, int column)

Parameters

message string

The error message.

line int

The line number where the error occurred.

column int

The column number where the error occurred.

PromptTemplateException(string, Exception)

Initializes a new instance of the PromptTemplateException class with the specified error message and inner exception.

public PromptTemplateException(string message, Exception innerException)

Parameters

message string

The error message.

innerException Exception

The inner exception.