what-the-bank/sources/com/google/firebase/installations/FirebaseInstallationsExcept...

25 lines
589 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.google.firebase.installations;
import com.google.firebase.FirebaseException;
/* loaded from: classes2.dex */
public class FirebaseInstallationsException extends FirebaseException {
private final Status status;
/* loaded from: classes2.dex */
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;
}
}