21 lines
558 B
Java
21 lines
558 B
Java
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;
|
|
}
|
|
}
|