It can be caught at the "Process level" by attaching a handler for uncaughtException event.
Example:
Example:
process.on('uncaughtException', function(err) { console.log('Caught exception: ' + err); });