package com.google.android.gms.internal.p002firebaseauthapi; /* loaded from: classes2.dex */ public final class zzy { public static int zza(int i, int i2, String str) { String zzb; if (i >= 0 && i < i2) { return i; } if (i < 0) { zzb = zzag.zzb("%s (%s) must not be negative", "index", Integer.valueOf(i)); } else if (i2 >= 0) { zzb = zzag.zzb("%s (%s) must be less than size (%s)", "index", Integer.valueOf(i), Integer.valueOf(i2)); } else { throw new IllegalArgumentException("negative size: " + i2); } throw new IndexOutOfBoundsException(zzb); } public static int zzb(int i, int i2, String str) { if (i < 0 || i > i2) { throw new IndexOutOfBoundsException(zzd(i, i2, "index")); } return i; } private static String zzd(int i, int i2, String str) { if (i < 0) { return zzag.zzb("%s (%s) must not be negative", str, Integer.valueOf(i)); } if (i2 < 0) { throw new IllegalArgumentException("negative size: " + i2); } return zzag.zzb("%s (%s) must not be greater than size (%s)", str, Integer.valueOf(i), Integer.valueOf(i2)); } public static void zzc(int i, int i2, int i3) { String zzd; if (i < 0 || i2 < i || i2 > i3) { if (i < 0 || i > i3) { zzd = zzd(i, i3, "start index"); } else if (i2 < 0 || i2 > i3) { zzd = zzd(i2, i3, "end index"); } else { zzd = zzag.zzb("end index (%s) must not be less than start index (%s)", Integer.valueOf(i2), Integer.valueOf(i)); } throw new IndexOutOfBoundsException(zzd); } } }