-
-
Notifications
You must be signed in to change notification settings - Fork 237
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement exception groups #1859
Comments
This is coming out of a package and it's not an error from Dart or Flutter. The package is also not particularly popular. |
@ueman Thank you for the message, I've missed that, in that case, it doesn't make sense to add it to the SDK. We could still add the parent-child relationship for the PlatformExceptions and Cause as described in the RFC. |
After a closer look, it looks like the dart SDK is sending the Dart send: Newer -> older. (Dart -> native) -> sentry-dart/flutter/lib/src/event_processor/android_platform_exception_event_processor.dart Lines 100 to 101 in 8e4eeb3
Specs: Older -> newer. -> https://develop.sentry.dev/sdk/event-payloads/exception/ |
Be sure before changing the order, I know that the BE reverses the list. |
@marandaneto Thank you I will check that, don't want to break it. |
Description
The Dart/Flutter SDK currently supports
PlatformExceptions
andExceptionCause
.Related links
sentry-dart/flutter/lib/src/event_processor/platform_exception_event_processor.dart
Line 5 in 681136b
sentry-dart/dart/lib/src/exception_cause_extractor.dart
Line 32 in 681136b
AggregateErrors
inLinkedErrors
integration sentry-javascript#8463Notes
I'm not aware of how used or not the AggregateErrors are. After a quick search doesn't seem too common.Blocked by
The text was updated successfully, but these errors were encountered: