- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
24 lines
552 B
Java
24 lines
552 B
Java
package com.google.firebase.installations;
|
|
|
|
import com.google.firebase.FirebaseException;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class FirebaseInstallationsException extends FirebaseException {
|
|
public final Status status;
|
|
|
|
public enum Status {
|
|
BAD_CONFIG,
|
|
UNAVAILABLE,
|
|
TOO_MANY_REQUESTS
|
|
}
|
|
|
|
public FirebaseInstallationsException(Status status) {
|
|
this.status = status;
|
|
}
|
|
|
|
public FirebaseInstallationsException(String str, Status status) {
|
|
super(str);
|
|
this.status = status;
|
|
}
|
|
}
|