package com.google.android.gms.libs.identity; import javax.annotation.CheckForNull; /* JADX INFO: compiled from: com.google.android.gms:play-services-location@@21.2.0 */ /* JADX INFO: loaded from: classes2.dex */ public final class zzer { public static void zza(boolean z) { if (!z) { throw new IllegalArgumentException(); } } public static void zzb(boolean z, @CheckForNull Object obj) { if (!z) { throw new IllegalArgumentException((String) obj); } } public static int zzc(int i, int i2, String str) { String strZza; if (i >= 0 && i < i2) { return i; } if (i < 0) { strZza = zzes.zza("%s (%s) must not be negative", "index", Integer.valueOf(i)); } else { if (i2 < 0) { StringBuilder sb = new StringBuilder(String.valueOf(i2).length() + 15); sb.append("negative size: "); sb.append(i2); throw new IllegalArgumentException(sb.toString()); } strZza = zzes.zza("%s (%s) must be less than size (%s)", "index", Integer.valueOf(i), Integer.valueOf(i2)); } throw new IndexOutOfBoundsException(strZza); } public static int zzd(int i, int i2, String str) { if (i < 0 || i > i2) { throw new IndexOutOfBoundsException(zzf(i, i2, "index")); } return i; } public static void zze(int i, int i2, int i3) { if (i < 0 || i2 < i || i2 > i3) { throw new IndexOutOfBoundsException((i < 0 || i > i3) ? zzf(i, i3, "start index") : (i2 < 0 || i2 > i3) ? zzf(i2, i3, "end index") : zzes.zza("end index (%s) must not be less than start index (%s)", Integer.valueOf(i2), Integer.valueOf(i))); } } private static String zzf(int i, int i2, String str) { if (i < 0) { return zzes.zza("%s (%s) must not be negative", str, Integer.valueOf(i)); } if (i2 >= 0) { return zzes.zza("%s (%s) must not be greater than size (%s)", str, Integer.valueOf(i), Integer.valueOf(i2)); } StringBuilder sb = new StringBuilder(String.valueOf(i2).length() + 15); sb.append("negative size: "); sb.append(i2); throw new IllegalArgumentException(sb.toString()); } }