From 8e9d895d1a2bbc051e630ba5aa15fa2cc62ac745 Mon Sep 17 00:00:00 2001 From: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> Date: Wed, 15 Jan 2025 19:41:40 -0600 Subject: [PATCH] Update error-handling.mdx --- src/content/docs/v4/reference/error-handling.mdx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/content/docs/v4/reference/error-handling.mdx b/src/content/docs/v4/reference/error-handling.mdx index bcb2e35df..f6230cf9b 100644 --- a/src/content/docs/v4/reference/error-handling.mdx +++ b/src/content/docs/v4/reference/error-handling.mdx @@ -50,6 +50,11 @@ export default eventModule({ If the error handler is not set, sern's behavior is to crash the application. This respects [node.js's default behavior](https://nodejs.org/api/events.html#error-events) +:::tip + +enable `autoHandleErrors` to handle errors that occur within modules. + +::: :::caution