FirebaseError is a subclass of the standard JavaScriptError object. Inaddition to a message string and stack trace, it contains a string code.

Index

Properties

code

code:string

Error codes are strings using the following format:"service/string-code".Some examples include"app/no-app" and"auth/user-not-found".

While the message for a given error can change, the code will remain the samebetween backward-compatible versions of the Firebase SDK.

message

message:string

An explanatory message for the error that just occurred.

This message is designed to be helpful to you, the developer. Becauseit generally does not convey meaningful information to end users,this message should not be displayed in your application.

name

name:"FirebaseError"

The name of the class of errors, which is"FirebaseError".

Optional stack

stack:string

A string value containing the execution backtrace when the error originallyoccurred. This may not always be available.

When it is available, this information can be sent toFirebase Support to helpexplain the cause of an error.

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2022-07-27 UTC.