Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ClIndexOutOfBoundsException (2.57 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: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 12.5K bytes
    - Viewed (0)
Back to top