in src/Runtime.js [163:174]
_setErrorCallbacks(invokeId) {
this.errorCallbacks.uncaughtException = (error) => {
this.client.postInvocationError(error, invokeId, () => {
process.exit(129);
});
};
this.errorCallbacks.unhandledRejection = (error) => {
this.client.postInvocationError(error, invokeId, () => {
process.exit(128);
});
};
}