docs: uncaughtException is here to stay

Brings docs in line with decision made here:

https://github.com/joyent/node/issues/2582#issuecomment-9971225
pull/5010/head
Felix Geisendörfer 2013-04-09 13:39:17 +03:00
parent 7357bcb727
commit a2fd657b10
1 changed files with 1 additions and 1 deletions

View File

@ -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!