Table of Contents

Class EventException

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

Represents an error generated by the eventing system.

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

Constructors

EventException()

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

public EventException()

EventException(string?)

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

public EventException(string? message)

Parameters

message string

A string that describes the error.

EventException(string?, Exception?)

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

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