- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for ClIndexOutOfBoundsException (0.18 seconds)
-
src/main/java/org/codelibs/core/misc/AssertionUtil.java
* The description of why the index is invalid. * @throws ClIndexOutOfBoundsException * If {@code expression} is false. */ public static void assertIndex(final boolean expression, final String description) { if (!expression) { throw new ClIndexOutOfBoundsException(description); } }Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 12.5K bytes - Click Count (0) -
src/test/java/org/codelibs/core/collection/ArrayMapTest.java
import java.util.HashMap; import java.util.Iterator; import java.util.Map; import java.util.NoSuchElementException; import org.codelibs.core.exception.ClIllegalStateException; import org.codelibs.core.exception.ClIndexOutOfBoundsException; import org.codelibs.core.io.SerializeUtil; import org.junit.After; import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; /**
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 10.7K bytes - Click Count (0)