Dexie.TransactionInactiveError
Inheritance Hierarchy
- Error
- Dexie.DexieError
- Dexie.TransactionInactiveError
- Dexie.DexieError
Description
The transaction has already committed when you try to access it.
Sample using Promise.catch()
doSomeDatabaseWork().then(result => {
// Success
}).catch('TransactionInactiveError', e => {
// Failed with TransactionInactiveError
console.error ("TransactionInactive 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);
});
Sample: switch(error.name)
db.on('error', function (error) {
switch (error.name) {
// errnames.TransactionInactive ==="TransactionInactiveError"
case Dexie.errnames.TransactionInactive:
console.error ("TransactionInactive error");
break;
default:
console.error ("error: " + e);
}
});
Properties
| name | Will always be Dexie.errnames.TransactionInactive === "TransactionInactiveError" |
| message | Detailed message |
| inner? | Inner exception instance (if any) |
| stack | Can be present if the error was thrown. If signaled, there wont be any call stack. |