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

21 lines
558 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.google.firebase.remoteconfig;
/* loaded from: classes2.dex */
public class FirebaseRemoteConfigServerException extends FirebaseRemoteConfigException {
private final int httpStatusCode;
public FirebaseRemoteConfigServerException(int i, String str) {
super(str);
this.httpStatusCode = i;
}
public FirebaseRemoteConfigServerException(int i, String str, Throwable th) {
super(str, th);
this.httpStatusCode = i;
}
public int getHttpStatusCode() {
return this.httpStatusCode;
}
}