I am throwing a Meteor.Error exception from a server-side method.
throw new Meteor.Error( 500, 'There was an error processing your request' );
My goal is get the client side Meteor.call to receive this error, which it does, but throwing also causes the node process to exit.
error: Forever detected script exited with code: 8
What is the correct way to signal errors from a Meteor.methods() to a Meteor.call without killing the script?