FirebaseRemoteConfigClientException

class FirebaseRemoteConfigClientException : FirebaseRemoteConfigException


A Firebase Remote Config internal issue that isn't caused by an interaction with the Firebase Remote Config server.

Summary

Public constructors

Creates a Firebase Remote Config client exception with the given message.

FirebaseRemoteConfigClientException(
    detailMessage: String,
    cause: Throwable?
)

Creates a Firebase Remote Config client exception with the given message and cause.

Creates a Firebase Remote Config client exception with the given message and FirebaseRemoteConfigException code.

FirebaseRemoteConfigClientException(
    detailMessage: String,
    cause: Throwable?,
    code: FirebaseRemoteConfigException.Code
)

Creates a Firebase Remote Config client exception with the given message, exception cause, and FirebaseRemoteConfigException code.

Inherited properties

From com.google.firebase.remoteconfig.FirebaseRemoteConfigException
FirebaseRemoteConfigException.Code!

Code that specifies the type of exception.

Public constructors

FirebaseRemoteConfigClientException

FirebaseRemoteConfigClientException(detailMessage: String)

Creates a Firebase Remote Config client exception with the given message.

FirebaseRemoteConfigClientException

FirebaseRemoteConfigClientException(
    detailMessage: String,
    cause: Throwable?
)

Creates a Firebase Remote Config client exception with the given message and cause.

FirebaseRemoteConfigClientException

FirebaseRemoteConfigClientException(
    detailMessage: String,
    code: FirebaseRemoteConfigException.Code
)

Creates a Firebase Remote Config client exception with the given message and FirebaseRemoteConfigException code.

FirebaseRemoteConfigClientException

FirebaseRemoteConfigClientException(
    detailMessage: String,
    cause: Throwable?,
    code: FirebaseRemoteConfigException.Code
)

Creates a Firebase Remote Config client exception with the given message, exception cause, and FirebaseRemoteConfigException code.