Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FirebaseError

class FirebaseError extends Error {
constructor(
code: string,
message: string,
customData?: Record<string, unknown> | undefined,
);
readonly code: string;
customData?: Record<string, unknown> | undefined;
readonly name: string;
}

§Extends

§
Error
[src]

§Constructors

§
new FirebaseError(code: string, message: string, customData?: Record<string, unknown> | undefined)
[src]

§Properties

§
code: string
[src]

The error code for this error.

§
customData: Record<string, unknown> | undefined
[src]

Custom data for this error.

§
name: string
[src]

The custom name for all FirebaseErrors.