Dexie.TimeoutError

Inheritance Hierarchy

  • Error

    • Dexie.DexieError

      • Dexie.TimeoutError

Description

The timeout passed to Dexie.waitFor() was hit before finish.

Sample using Promise.catch()

doSomeDatabaseWork().then(result => {
    // Success
}).catch('TimeoutError', e => {
    // Failed with TimeoutError
    console.error ("Timeout 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)

Properties

name
Will always be Dexie.errnames.Timeout === "TimeoutError"

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.