1570a3792b
Change test data files extension to "java"
14 lines
481 B
Java
14 lines
481 B
Java
//file
|
|
package demo;
|
|
|
|
class Test {
|
|
static void subListRangeCheck(int fromIndex, int toIndex, int size) {
|
|
if (fromIndex < 0)
|
|
throw new IndexOutOfBoundsException("fromIndex = " + fromIndex);
|
|
if (toIndex > size)
|
|
throw new IndexOutOfBoundsException("toIndex = " + toIndex);
|
|
if (fromIndex > toIndex)
|
|
throw new IllegalArgumentException("fromIndex(" + fromIndex
|
|
+ ") > toIndex(" + toIndex + ")");
|
|
}
|
|
} |