what-the-bank/sources/com/google/firebase/remoteconfig/FirebaseRemoteConfigFetchTh...

16 lines
477 B
Java

package com.google.firebase.remoteconfig;
/* loaded from: classes2.dex */
public class FirebaseRemoteConfigFetchThrottledException extends FirebaseRemoteConfigException {
private final long throttleEndTimeMillis;
public FirebaseRemoteConfigFetchThrottledException(long j) {
this("Fetch was throttled.", j);
}
public FirebaseRemoteConfigFetchThrottledException(String str, long j) {
super(str);
this.throttleEndTimeMillis = j;
}
}