- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for IllegalPropertyRuntimeException (0.16 seconds)
-
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) {Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat Jul 05 00:11:05 GMT 2025 - 2K bytes - Click Count (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)
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Fri Jun 20 13:40:57 GMT 2025 - 11K bytes - Click Count (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;
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 24 01:52:43 GMT 2025 - 15.1K bytes - Click Count (0)