- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for ECL0013 (0.05 seconds)
-
src/main/resources/CLMessages.properties
ECL0008=argument[{0}] is null. ECL0009=argument[{0}] is illegal. because {1}. ECL0010=argument[{0}] is null or empty string. ECL0011=argument[{0}] is null or empty array. ECL0012=argument[{0}] is null or empty collection. ECL0013=argument[{0}] is null or empty map. ECL0014=argument[{0}] which is null the index of array is negative integer. ECL0015=argument[{0}] which is null the index of array exceed the size of array[{1}].Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Mar 07 01:58:02 GMT 2024 - 3.1K bytes - Click Count (0) -
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}.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)