Table of Contents

Interface ExceptionInfo

Namespace
MassTransit
Assembly
MassTransit.Abstractions.dll

An exception information that is serializable

public interface ExceptionInfo

Properties

Data

IDictionary<string, object>? Data { get; }

Property Value

IDictionary<string, object>

ExceptionType

The type name of the exception

string ExceptionType { get; }

Property Value

string

InnerException

The inner exception if present (also converted to ExceptionInfo)

ExceptionInfo? InnerException { get; }

Property Value

ExceptionInfo

Message

The exception message

string Message { get; }

Property Value

string

Source

The exception source

string Source { get; }

Property Value

string

StackTrace

The stack trace of the exception site

string StackTrace { get; }

Property Value

string