diff --git a/doc/api/process.md b/doc/api/process.md index e6612278b6bc4a..edf01258c3941b 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -1720,18 +1720,19 @@ added: v9.3.0 * `fn` {Function|null} -The `process.setUncaughtExceptionCapture` function sets a function that will -be invoked when an uncaught exception occurs, which will receive the exception -value itself as its first argument. +The `process.setUncaughtExceptionCaptureCallback()` function sets a function +that will be invoked when an uncaught exception occurs, which will receive the +exception value itself as its first argument. If such a function is set, the [`'uncaughtException'`][] event will not be emitted. If `--abort-on-uncaught-exception` was passed from the command line or set through [`v8.setFlagsFromString()`][], the process will not abort. -To unset the capture function, `process.setUncaughtExceptionCapture(null)` -may be used. Calling this method with a non-`null` argument while another -capture function is set will throw an error. +To unset the capture function, +`process.setUncaughtExceptionCaptureCallback(null)` may be used. Calling this +method with a non-`null` argument while another capture function is set will +throw an error. Using this function is mutually exclusive with using the deprecated [`domain`][] built-in module.