- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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;
|
|
}
|
|
}
|