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
ExceptionType
The type name of the exception
string ExceptionType { get; }
Property Value
InnerException
The inner exception if present (also converted to ExceptionInfo)
ExceptionInfo? InnerException { get; }
Property Value
Message
The exception message
string Message { get; }
Property Value
Source
The exception source
string Source { get; }
Property Value
StackTrace
The stack trace of the exception site
string StackTrace { get; }