Skip to main content

Class: IDBNotFoundError

This Error is thrown when we detect that the IndexedDB has been removed. This does not normally happen but can happen during development if the user has DevTools open and deletes the IndexedDB from there.

Hierarchy

  • Error

    IDBNotFoundError

Constructors

constructor

new IDBNotFoundError(message?)

Parameters

NameType
message?string

Inherited from

Error.constructor

new IDBNotFoundError(message?, options?)

Parameters

NameType
message?string
options?ErrorOptions

Inherited from

Error.constructor

Properties

cause

Optional cause: unknown

Inherited from

Error.cause


message

message: string

Inherited from

Error.message


name

name: string = 'IDBNotFoundError'

Overrides

Error.name


stack

Optional stack: string

Inherited from

Error.stack


prepareStackTrace

Static Optional prepareStackTrace: (err: Error, stackTraces: CallSite[]) => any

Type declaration

▸ (err, stackTraces): any

Optional override for formatting stack traces

Parameters
NameType
errError
stackTracesCallSite[]
Returns

any

See

https://v8.dev/docs/stack-trace-api#customizing-stack-traces

Inherited from

Error.prepareStackTrace


stackTraceLimit

Static stackTraceLimit: number

Inherited from

Error.stackTraceLimit

Methods

captureStackTrace

Static captureStackTrace(targetObject, constructorOpt?): void

Create .stack property on a target object

Parameters

NameType
targetObjectobject
constructorOpt?Function

Returns

void

Inherited from

Error.captureStackTrace