Open
Description
Description
React Native SDK currently supports linked exceptions using cause
but doesn't support AggregateError.
### Blocked by
- [ ] https://github.com/getsentry/sentry/issues/59679#issuecomment-1920193704
Related information
- https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/cause
- https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AggregateError
- https://github.com/getsentry/rfcs/blob/main/text/0079-exception-groups.md#example-event
- feat: Support
AggregateErrors
inLinkedErrors
integration sentry-javascript#8463
Notes
- Implementing this might likely change grouping so it should be done in a major version.
Works
{
"message": "Third",
"cause": {
"message": "Second",
"cause": {
"message": "First",
}
}
}
Not implemented at the moment
{
"message": "Third",
"errors": [
{
"message": "First",
},
{
"message": "Second",
},
]
}
Metadata
Metadata
Assignees
Type
Projects
Status
Blocked