Java Examples for com.google.firebase.remoteconfig.FirebaseRemoteConfigFetchException
The following java examples will help you to understand the usage of com.google.firebase.remoteconfig.FirebaseRemoteConfigFetchException. These source code samples are taken from different open source projects.
Example 1
Project: the-blue-alliance-android-master File: AppConfig.java View source code |
private void handleUpdateException(Exception e) {
if (e instanceof FirebaseRemoteConfigFetchThrottledException) {
TbaLogger.d("RemoteConfig fetch throttled");
} else if (e instanceof FirebaseRemoteConfigFetchException) {
TbaLogger.i("Error fetching RemoteConfig: " + e.getMessage());
} else {
TbaLogger.w("Error fetching RemoteConfig: " + e.getMessage(), e);
}
}