Skip to content

Implement exception groups (AggregateError) #3579

Open
@krystofwoldrich

Description

@krystofwoldrich

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

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

No one assigned

    Type

    No type

    Projects

    Status

    Blocked

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions