Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PropertyNotFoundRuntimeException (0.18 sec)

  1. src/main/java/org/codelibs/core/exception/PropertyNotFoundRuntimeException.java

    /**
     * プロパティが見つからなかった場合にスローされる例外です。
     *
     * @author higa
     *
     */
    public class PropertyNotFoundRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -5177019197796206774L;
    
        private final Class<?> targetClass;
    
        private final String propertyName;
    
        /**
         * {@link PropertyNotFoundRuntimeException}を返します。
         *
         * @param targetClass
         *            ターゲットクラス
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

    import org.codelibs.core.exception.FieldNotFoundRuntimeException;
    import org.codelibs.core.exception.MethodNotFoundRuntimeException;
    import org.codelibs.core.exception.PropertyNotFoundRuntimeException;
    import org.codelibs.core.lang.ClassUtil;
    import org.codelibs.core.lang.FieldUtil;
    import org.codelibs.core.lang.StringUtil;
    
    /**
     * {@link BeanDesc}の実装クラスです。
     *
     * @author higa
     */
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top