-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: remove uncaught exception handler (#154)
There are no circumstances under which it is safe to ignore uncaught exceptions, since the application is left in an unconsistent state. The node documentation is unequivocal about this: https://nodejs.org/api/process.html#warning-using-uncaughtexception-correctly Any code that can throw an exception should be wrapped in a `try/catch` or there should be some other method of handling the error.
- Loading branch information
1 parent
87deb92
commit 43af7c5
Showing
2 changed files
with
1 addition
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters