Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IllegalPropertyRuntimeException (0.22 sec)

  1. src/test/java/org/codelibs/core/beans/impl/PropertyDescImplTest.java

        public void testGetValue_notReableWithField() throws Exception {
            final MyBean myBean = new MyBean();
            final BeanDesc beanDesc = new BeanDescImpl(MyBean.class);
            final PropertyDesc propDesc = beanDesc.getPropertyDesc("kkk");
            propDesc.getValue(myBean);
        }
    
        /**
         * @throws Exception
         */
        @Test(expected = IllegalPropertyRuntimeException.class)
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Fri Jun 20 13:40:57 UTC 2025
    - 11K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

    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;
    import org.codelibs.core.lang.MethodUtil;
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 24 01:52:43 UTC 2025
    - 15.1K bytes
    - Viewed (0)
Back to top