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"); } }