- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for IllegalKeyOfBeanMapException (0.12 sec)
-
src/main/java/org/codelibs/core/exception/IllegalKeyOfBeanMapException.java
* * @author koichik */ public class IllegalKeyOfBeanMapException extends ClIllegalArgumentException { private static final long serialVersionUID = 3456740832476626338L; /** * Constructs an instance. * * @param key * Key of the map * @param map * Map */ public IllegalKeyOfBeanMapException(final Object key, final Map<?, ?> 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/beans/util/BeanMap.java
* governing permissions and limitations under the License. */ package org.codelibs.core.beans.util; import java.util.LinkedHashMap; import org.codelibs.core.exception.IllegalKeyOfBeanMapException; /** * A map with String keys that throws an exception when accessing (get) a non-existent key. * * @author higa */ public class BeanMap extends LinkedHashMap<String, Object> {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.2K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/util/BeanMapTest.java
*/ package org.codelibs.core.beans.util; import static org.hamcrest.CoreMatchers.is; import static org.junit.Assert.assertThat; import org.codelibs.core.exception.IllegalKeyOfBeanMapException; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; /** * @author higa */ public class BeanMapTest { /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1.7K bytes - Viewed (0)