DatabaseException

actual typealias DatabaseException = com.google.firebase.database.DatabaseException(source)
expect class DatabaseException(message: String?, cause: Throwable?) : RuntimeException(source)

Exception that gets thrown when an operation on Firebase Database fails.

actual class DatabaseException(message: String?, cause: Throwable?) : RuntimeException(source)
actual class DatabaseException(message: String?, cause: Throwable?) : RuntimeException(source)
actual typealias DatabaseException = com.google.firebase.database.DatabaseException

Constructors

Link copied to clipboard
expect constructor(message: String?, cause: Throwable?)
actual constructor(message: String?, cause: Throwable?)
constructor(error: dynamic)
actual constructor(message: String?, cause: Throwable?)

Properties

cause
Link copied to clipboard
open val cause: Throwable?
open val cause: Throwable?
open val cause: Throwable?
message
Link copied to clipboard
open val message: String?
open val message: String?
open val message: String?

Functions

Link copied to clipboard
open override fun toString(): String