This is an archive of the old site. Visit the latest version at dexie.org.

Dexie.UnsupportedError

Inheritance Hierarchy

Description

The operation is not supported by the current browser.

Sample using Promise.catch()

doSomeDatabaseWork().then(result => {
    // Success
}).catch('UnsupportedError', e => {
    // Failed with UnsupportedError
    console.error ("Unsupported 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.Unsupported ==="UnsupportedError"
        case Dexie.errnames.Unsupported:
            console.error ("Unsupported error");
            break;
        default:
            console.error ("error: " + e);
    }
});

Properties

nameWill always be Dexie.errnames.Unsupported === "UnsupportedError"
messageDetailed message
inner?Inner exception instance (if any)
stackCan be present if the error was thrown. If signaled, there wont be any call stack.

Table of Contents