jimu-decompiled/sources/com/google/firebase/FirebaseException.java
2025-05-13 19:24:51 +02:00

23 lines
726 B
Java

package com.google.firebase;
import com.google.android.gms.common.internal.Preconditions;
/* loaded from: classes.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.a(str, (Object) "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.a(str, (Object) "Detail message must not be empty");
}
}