We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc9238b commit 1637986Copy full SHA for 1637986
packages/bun/README.md
@@ -59,17 +59,3 @@ Sentry.captureEvent({
59
],
60
});
61
```
62
-
63
-It's not possible to capture unhandled exceptions, unhandled promise rejections now - Bun is working on adding support
64
-for it. [Github Issue](https://github.com/oven-sh/bun/issues/5091) follow this issue. To report errors to Sentry, you
65
-have to manually try-catch and call `Sentry.captureException` in the catch block.
66
67
-```ts
68
-import * as Sentry from '@sentry/bun';
69
70
-try {
71
- throw new Error('test');
72
-} catch (e) {
73
- Sentry.captureException(e);
74
-}
75
-```
0 commit comments