13 lines
359 B
Java
13 lines
359 B
Java
package com.google.firebase.remoteconfig;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class FirebaseRemoteConfigClientException extends FirebaseRemoteConfigException {
|
|
public FirebaseRemoteConfigClientException(String str) {
|
|
super(str);
|
|
}
|
|
|
|
public FirebaseRemoteConfigClientException(String str, Throwable th) {
|
|
super(str, th);
|
|
}
|
|
}
|