what-the-bank/sources/com/google/firebase/ml/common/FirebaseMLException.java

22 lines
829 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.google.firebase.ml.common;
import com.google.android.gms.common.internal.Preconditions;
import com.google.firebase.FirebaseException;
/* loaded from: classes2.dex */
public class FirebaseMLException extends FirebaseException {
private final int code;
public FirebaseMLException(String str, int i) {
super(Preconditions.checkNotEmpty(str, "Provided message must not be empty."));
Preconditions.checkArgument(i != 0, "A FirebaseMLException should never be thrown for OK");
this.code = i;
}
public FirebaseMLException(String str, int i, Throwable th) {
super(Preconditions.checkNotEmpty(str, "Provided message must not be empty."), th);
Preconditions.checkArgument(i != 0, "A FirebaseMLException should never be thrown for OK");
this.code = i;
}
}