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

15 lines
376 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.google.firebase.remoteconfig;
import com.google.firebase.FirebaseException;
/* loaded from: classes2.dex */
public class FirebaseRemoteConfigException extends FirebaseException {
public FirebaseRemoteConfigException(String str) {
super(str);
}
public FirebaseRemoteConfigException(String str, Throwable th) {
super(str, th);
}
}