Initial version -- added millennium read funcionality

This commit is contained in:
Pablo
2026-03-09 22:05:28 +01:00
commit 77c2ded482
2770 changed files with 141927 additions and 0 deletions
@@ -0,0 +1,23 @@
package com.google.firebase;
import com.google.android.gms.common.internal.Preconditions;
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
/* JADX INFO: loaded from: classes2.dex */
public class FirebaseException extends Exception {
@Deprecated
protected FirebaseException() {
}
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public FirebaseException(String str) {
super(str);
Preconditions.checkNotEmpty(str, "Detail message must not be empty");
}
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public FirebaseException(String str, Throwable th) {
super(str, th);
Preconditions.checkNotEmpty(str, "Detail message must not be empty");
}
}