Feedback Aide API Events
save:error
Fired when an error occurs during the save operation.
You would want to be notified about this event firing, because you might want to update your application UI to indicate there is an error, for example.
Examples
feedbackSession.on('save:error', function (error) {
console.log('save failed', error);
});