- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
16 lines
476 B
Java
16 lines
476 B
Java
package com.google.firebase.remoteconfig;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class FirebaseRemoteConfigFetchThrottledException extends FirebaseRemoteConfigException {
|
|
public final long throttleEndTimeMillis;
|
|
|
|
public FirebaseRemoteConfigFetchThrottledException(long j) {
|
|
this("Fetch was throttled.", j);
|
|
}
|
|
|
|
public FirebaseRemoteConfigFetchThrottledException(String str, long j) {
|
|
super(str);
|
|
this.throttleEndTimeMillis = j;
|
|
}
|
|
}
|