Grading API Events
save:error
Fired when the public method gradingApp.save()
has thrown an error.
You would want to be notified about this event firing, because you might want to update your application UI to indicate that the saving of the updated score or feedback has encountered an error, for example.
Examples
gradingApp.on('save:error', function () {
console.log('save fail');
});