interface WrappedException {
    customProperties?: { [key: string]: any };
    errorCode?: number;
    eventId?: number;
    helpLink?: string;
    innerException?: WrappedException;
    message?: string;
    stackTrace?: string;
    typeKey?: string;
    typeName?: string;
}

Properties

customProperties?: { [key: string]: any }
errorCode?: number
eventId?: number
helpLink?: string
innerException?: WrappedException
message?: string
stackTrace?: string
typeKey?: string
typeName?: string