Table of Contents

Constructor SkillParseException

Namespace
LMKit.Agents.Skills
Assembly
LM-Kit.NET.dll

SkillParseException()

Initializes a new instance of the SkillParseException class.

public SkillParseException()

SkillParseException(string)

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

public SkillParseException(string message)

Parameters

message string

The message that describes the error.

SkillParseException(string, string)

Initializes a new instance of the SkillParseException class with the specified error message and skill path.

public SkillParseException(string message, string skillPath)

Parameters

message string

The message that describes the error.

skillPath string

The path to the skill directory.

SkillParseException(string, string, int)

Initializes a new instance of the SkillParseException class with the specified error message, skill path, and line number.

public SkillParseException(string message, string skillPath, int lineNumber)

Parameters

message string

The message that describes the error.

skillPath string

The path to the skill directory.

lineNumber int

The line number where the error occurred.

SkillParseException(string, Exception)

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

public SkillParseException(string message, Exception innerException)

Parameters

message string

The message that describes the error.

innerException Exception

The exception that caused this exception.

SkillParseException(string, string, Exception)

Initializes a new instance of the SkillParseException class with the specified error message, skill path, and inner exception.

public SkillParseException(string message, string skillPath, Exception innerException)

Parameters

message string

The message that describes the error.

skillPath string

The path to the skill directory.

innerException Exception

The exception that caused this exception.