Also concat stacks

This commit is contained in:
Justin Chase 2017-11-25 10:45:58 -06:00
parent 15e39a51b0
commit a5a913419b

View File

@ -553,6 +553,7 @@ function onError(message, error) {
// rethrow new high level error for api users
const newError = new Error(message + ': ' + error.message);
newError.innerError = error;
newError.stack += '\n' + error.stack;
throw newError;
}