- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for ClIllegalArgumentException (0.12 sec)
-
src/main/java/org/codelibs/core/exception/ClIllegalArgumentException.java
protected final Object[] args; /** * Creates a {@link ClIllegalArgumentException}. * * @param argName * Name of the argument * @param messageCode * Message code * @param args * Array of arguments */ public ClIllegalArgumentException(final String argName, final String messageCode, final Object[] args) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/AssertionUtil.java
* The length of the array the index refers to. * @throws ClIllegalArgumentException * If the argument is invalid as an array index. */ public static void assertArgumentArrayIndex(final String argName, final int argValue, final int arraySize) { if (argValue < 0) { throw new ClIllegalArgumentException(argName, "ECL0014", asArray(argName)); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/EmptyArgumentException.java
*/ package org.codelibs.core.exception; /** * Exception thrown when an argument is empty. * * @author higa */ public class EmptyArgumentException extends ClIllegalArgumentException { private static final long serialVersionUID = 4625805280526951642L; /** * Creates an {@link EmptyArgumentException}. * * @param argName * Name of the argument
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.7K bytes - Viewed (0) -
src/test/java/org/codelibs/core/lang/FieldUtilTest.java
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertThat; import java.lang.reflect.Field; import java.util.Collection; import java.util.Map; import org.codelibs.core.exception.ClIllegalArgumentException; import org.junit.Test; /** * @author y-komori * */ public class FieldUtilTest { /** */ public Object objectField; /** */ public int intField;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/log/Logger.java
import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotEmpty; import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull; import java.util.Map; import org.codelibs.core.exception.ClIllegalArgumentException; import org.codelibs.core.message.MessageFormatter; import org.codelibs.core.misc.DisposableUtil; /** * Logger interface. * * @author higa */ public class Logger { /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 12.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/IllegalKeyOfBeanMapException.java
import java.util.Map; /** * Exception thrown when using a key not contained in a {@literal BeanMap}. * * @author koichik */ public class IllegalKeyOfBeanMapException extends ClIllegalArgumentException { private static final long serialVersionUID = 3456740832476626338L; /** * Constructs an instance. * * @param key * Key of the map * @param map
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/NullArgumentException.java
/** * Exception thrown when an argument is null. * * Intended to be used instead of throwing {@link NullPointerException}. * * @author wyukawa */ public class NullArgumentException extends ClIllegalArgumentException { /** * */ private static final long serialVersionUID = 1L; /** * Creates a {@link NullArgumentException}. * * @param argName
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java
import org.codelibs.core.convert.TimeConversionUtil; import org.codelibs.core.convert.TimestampConversionUtil; import org.codelibs.core.exception.BeanMethodSetAccessibleFailureException; import org.codelibs.core.exception.ClIllegalArgumentException; import org.codelibs.core.exception.IllegalPropertyRuntimeException; import org.codelibs.core.exception.ParseRuntimeException; import org.codelibs.core.lang.ConstructorUtil; import org.codelibs.core.lang.FieldUtil;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 24 01:52:43 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/FieldUtil.java
import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull; import java.lang.reflect.Field; import java.lang.reflect.Modifier; import java.lang.reflect.Type; import org.codelibs.core.exception.ClIllegalArgumentException; import org.codelibs.core.exception.IllegalAccessRuntimeException; /** * Utility class for {@link Field} operations. * * @author higa */ public abstract class FieldUtil { /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 9.8K bytes - Viewed (0)