Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions develop-docs/sdk/data-model/event-payloads/exception.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,14 @@ the root exception (the last to be listed in the exception values).

: An optional flag indicating that this exception is part of an exception group type specific to the platform or language.

`source`

: An optional string value describing the source of the exception. The SDK should populate this with the name of the property or attribute of the parent exception that this exception was acquired from. In the case of an array, it should include the zero-based array index as well.

- Python Examples: `"__context__"`, `"__cause__"`, `"exceptions[0]"`, `"exceptions[1]"`
- .NET Examples: `"InnerException"`, `"InnerExceptions[0]"`, `"InnerExceptions[1]"`
- JavaScript Examples: `"cause"`, `"errors[0]"`, `"errors[1]"`

`meta`

: Optional information from the operating system or runtime on the exception
Expand Down