Dexie.NoSuchDatabaseErrorError
Inheritance Hierarchy
Dexie.DexieError
Dexie.NoSuchDatabaseErrorError
Description
If db.version(X) was not called before interacting the first time with the database, it is considered to be opened in dynamic mode, which basically means it may just open existing databases. If the database name provided does not exist in db.open(), it will fail with NoSuchDatabaseError.
Sample using Promise.catch()
Sample: switch(error.name)
Properties
name
Will always be Dexie.errnames.NoSuchDatabaseError === "NoSuchDatabaseErrorError"
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.