From a2fd657b10c7609e1776004156a8cd3016e2c6c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Geisend=C3=B6rfer?= Date: Tue, 9 Apr 2013 13:39:17 +0300 Subject: [PATCH] docs: uncaughtException is here to stay Brings docs in line with decision made here: https://github.com/joyent/node/issues/2582#issuecomment-9971225 --- doc/api/process.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/process.markdown b/doc/api/process.markdown index c345da7690..b0060c3ecc 100644 --- a/doc/api/process.markdown +++ b/doc/api/process.markdown @@ -43,7 +43,7 @@ Example of listening for `uncaughtException`: console.log('This will not run.'); Note that `uncaughtException` is a very crude mechanism for exception -handling and may be removed in the future. +handling. Don't use it, use [domains](domain.html) instead. If you do use it, restart your application after every unhandled exception!