Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ClIndexOutOfBoundsException (0.2 sec)

  1. 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);
            }
        }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  2. 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;
    
    /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 10.7K bytes
    - Viewed (0)
Back to top