package com.android.org.conscrypt;

/* JADX INFO: loaded from: classes.dex */
final class ArrayUtils {
    private ArrayUtils() {
    }

    static void checkOffsetAndCount(int i3, int i4, int i5) {
        if ((i4 | i5) < 0 || i4 > i3 || i3 - i4 < i5) {
            throw new ArrayIndexOutOfBoundsException("length=" + i3 + "; regionStart=" + i4 + "; regionLength=" + i5);
        }
    }
}
