Initial import of ADIF API reverse-engineering toolkit

This commit is contained in:
2025-12-16 08:37:56 +01:00
commit 60388529c1
11486 changed files with 1086536 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package com.google.firebase.auth;
import com.google.android.gms.common.internal.Preconditions;
import com.google.firebase.FirebaseException;
/* loaded from: classes3.dex */
public class FirebaseAuthException extends FirebaseException {
private final String zza;
public FirebaseAuthException(String str, String str2) {
super(str2);
this.zza = Preconditions.checkNotEmpty(str);
}
public String getErrorCode() {
return this.zza;
}
}