- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for IllegalPropertyRuntimeException (0.15 sec)
-
src/main/java/org/codelibs/core/exception/IllegalPropertyRuntimeException.java
*/ private final String propertyName; /** * Creates a {@link IllegalPropertyRuntimeException}. * * @param targetClass * Target class * @param propertyName * Property name * @param cause * The cause of the exception */ public IllegalPropertyRuntimeException(final Class<?> targetClass, final String propertyName, final Throwable cause) {Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 2K bytes - Viewed (0) -
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: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 11K bytes - Viewed (0) -
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: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 24 01:52:43 UTC 2025 - 15.1K bytes - Viewed (0)