Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/java/org/codelibs/core/exception/ClIndexOutOfBoundsException.java

     *
     * @author wyukawa
     */
    public class ClIndexOutOfBoundsException extends IndexOutOfBoundsException {
    
        private static final long serialVersionUID = -824874776607593608L;
    
        /**
         * Creates a {@link ClIndexOutOfBoundsException}.
         */
        public ClIndexOutOfBoundsException() {
            super();
        }
    
        /**
         * Creates a {@link ClIndexOutOfBoundsException}.
         *
         * @param message
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  2. 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)
Back to top