Table of Contents

Class PluginException

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

Represents an error originating in a plugin.

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

Constructors

PluginException()

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

public PluginException()

PluginException(string?)

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

public PluginException(string? message)

Parameters

message string

A string that describes the error.

PluginException(string?, Exception?)

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

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