12345678910111213141516 |
- import { Integrations } from '@sentry/node';
- /**
- * A custom OnUncaughtException integration that does not exit by default.
- */
- class OnUncaughtException extends Integrations.OnUncaughtException {
- constructor(options) {
- super({
- exitEvenIfOtherHandlersAreRegistered: false,
- ...options,
- });
- }
- }
- export { OnUncaughtException };
- //# sourceMappingURL=onUncaughtExceptionIntegration.js.map
|