Dexie.ModifyError
Inheritance Hierarchy
Description
Properies
failures
Array of Error objects of all errors that have occurred
Properties derived from Error
Sample
db.friends.where('name').startsWith('a').delete ()
.catch(Dexie.ModifyError, function (err) {
err.failures.forEach(function (failure) {
console.error (failure.stack || failure.message);
});
});