Feedback Aide API Events
save:error
Fires 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
// Using the feedbackSession instance
feedbackSession.on('save:error', function (error) {
console.log('Save failed', error);
});
// Using the sessionUI instance
sessionUI.on('save:error', function (error) {
console.log('Save failed', error);
});