Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ECL0013 (0.08 sec)

  1. src/main/java/org/codelibs/core/misc/AssertionUtil.java

         */
        public static void assertArgumentNotEmpty(final String argName, final Map<?, ?> argValue) {
            if (argValue == null || argValue.isEmpty()) {
                throw new EmptyArgumentException(argName, "ECL0013", asArray(argName));
            }
        }
    
        /**
         * Asserts that the index is valid.
         *
         * @param argName
         *            The name of the argument that must not be {@code null}.
    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