Happens when trying to access a table that does not exist or is not part of current transaction.
Sample using Promise.catch()
doSomeDatabaseWork().then(function() {
// Success
}).catch(Dexie.InvalidTableError, function (e) {
// Failed with InvalidTableError
console.error ("InvalidTable error: " + e.message);
}).catch(Error, function (e) {
// Any other error derived from standard Error
console.error ("Error: " + e.message);
}).catch(function (e) {
// Other error such as a string was thrown
console.error (e);
});