I am using composer nodes in nod-red flow node-red-contrib-composer
There are cases when node is throwing error
"Error trying invoke business network. Error: Peer has rejected transaction 'ce59c38741626ca5dbc1ae7055e0a52297ff99293751f796ed41d40b5cfc59e9' with code MVCC_READ_CONFLICT "
I can see this error in debug console but I cannot catch this error using catch node available in node-red. I think, in composer nodes, below code is used:
.catch((error) => {
node.error(error.message);
});
How can I catch this error in node-red? I would like to use this error message in order to trigger another flow in same tab.