Dexie.AbortError
Inheritance Hierarchy
Dexie.DexieError
Dexie.AbortError
Description
Happens when the transaction was aborted. When this happens, it can be a result of an earlier uncaught exception that made the transaction abort. It will also happen when calling Transaction.abort(). To find out more about the abort reason, try look in the console log for earlier exceptions to see the reason behind it.
NOTICE! When catching AbortError, always inspect the property inner
to gain more information about the reason why the transaction was aborted.
Sample
Properties
name
Will always be Dexie.errnames.Abort === "AbortError"
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.