An attempt was made to use a table that is not part of the current transaction.
Sample using Promise.catch()
doSomeDatabaseWork().then(result => {
// Success
}).catch('NotFoundError', e => {
// Failed with NotFoundError
console.error ("NotFound error: " + e.message);
}).catch(Error, e => {
// Any other error derived from standard Error
console.error ("Error: " + e.message);
}).catch(e => {
// Other error such as a string was thrown
console.error (e);
});