You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: platform-includes/getting-started-use/javascript.nestjs.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,9 @@ export class YourCatchAllExceptionFilter implements ExceptionFilter {
49
49
}
50
50
```
51
51
52
+
By default, only unhandled exceptions that are not caught by an error filter are reported to Sentry.
53
+
`HttpException`s (including [derivatives](https://docs.nestjs.com/exception-filters#built-in-http-exceptions)) are also not captured by default because they mostly act as control flow vehicles.
54
+
52
55
{/* TODO(v9): Remove this note */}
53
56
_Note that `@SentryExceptionCaptured()` was called `@WithSentry` in SDK versions `8.38.0` and prior._
54
57
@@ -94,6 +97,3 @@ export class ExampleExceptionFilter extends BaseExceptionFilter {
94
97
}
95
98
}
96
99
```
97
-
98
-
By default, only unhandled exceptions that are not caught by an error filter are reported to Sentry.
99
-
`HttpException`s (including [derivatives](https://docs.nestjs.com/exception-filters#built-in-http-exceptions)) are also not captured by default because they mostly act as control flow vehicles.
0 commit comments