Exception details of the exception in a chain.

interface IExceptionDetails {
    hasFullStack: boolean;
    id: number;
    message: string;
    outerId: number;
    parsedStack: IStackFrame[];
    stack: string;
    typeName: string;
}

Properties

hasFullStack: boolean

Indicates if full exception stack is provided in the exception. The stack may be trimmed, such as in the case of a StackOverflow exception.

id: number

In case exception is nested (outer exception contains inner one), the id and outerId properties are used to represent the nesting.

message: string

Exception message.

outerId: number

The value of outerId is a reference to an element in ExceptionDetails that represents the outer exception

parsedStack: IStackFrame[]

List of stack frames. Either stack or parsedStack should have a value.

stack: string

Text describing the stack. Either stack or parsedStack should have a value.

typeName: string

Exception type name.