FirebaseRemoteConfigClientException

public class FirebaseRemoteConfigClientException extends 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(
    @NonNull String detailMessage,
    @Nullable Throwable cause
)

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.

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

Inherited fields

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

Code that specifies the type of exception.

Inherited methods

From com.google.firebase.remoteconfig.FirebaseRemoteConfigException
@NonNull FirebaseRemoteConfigException.Code

Gets the Code representing the type of exception.

From java.lang.Throwable
synchronized final void
synchronized Throwable
synchronized Throwable
String
String
StackTraceElement[]
synchronized final Throwable[]
synchronized Throwable
void
void
setStackTrace(StackTraceElement[] stackTrace)
String

Public constructors

FirebaseRemoteConfigClientException

public FirebaseRemoteConfigClientException(@NonNull String detailMessage)

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

FirebaseRemoteConfigClientException

public FirebaseRemoteConfigClientException(
    @NonNull String detailMessage,
    @Nullable Throwable cause
)

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

FirebaseRemoteConfigClientException

public FirebaseRemoteConfigClientException(
    @NonNull String detailMessage,
    @NonNull FirebaseRemoteConfigException.Code code
)

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

FirebaseRemoteConfigClientException

public FirebaseRemoteConfigClientException(
    @NonNull String detailMessage,
    @Nullable Throwable cause,
    @NonNull FirebaseRemoteConfigException.Code code
)

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