- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for EmptyArgumentException (0.29 seconds)
-
src/main/java/org/codelibs/core/misc/AssertionUtil.java
* @param argValue * The value of the argument. * @throws EmptyArgumentException * If the argument is <code>null</code> or an empty string. */ public static void assertArgumentNotEmpty(final String argName, final String argValue) { if (StringUtil.isEmpty(argValue)) { throw new EmptyArgumentException(argName, "ECL0010", asArray(argName)); } } /**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) -
src/main/java/org/codelibs/core/lang/ClassUtil.java
import java.lang.reflect.Field; import java.lang.reflect.Method; import java.util.Map; import org.codelibs.core.exception.ClassNotFoundRuntimeException; import org.codelibs.core.exception.EmptyArgumentException; import org.codelibs.core.exception.IllegalAccessRuntimeException; import org.codelibs.core.exception.InstantiationRuntimeException; import org.codelibs.core.exception.NoSuchConstructorRuntimeException;
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 25.6K bytes - Click Count (0)