Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ECL0070 (0.02 sec)

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

         * @param cause
         *            The cause of the exception
         */
        public NoSuchFieldRuntimeException(final Class<?> targetClass, final String fieldName, final Throwable cause) {
            super("ECL0070", asArray(targetClass.getName(), fieldName), cause);
            this.targetClass = targetClass;
            this.fieldName = fieldName;
        }
    
        /**
         * Returns the target class.
         *
         * @return Target class
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/exception/FieldNotFoundRuntimeException.java

         *            Target class
         * @param fieldName
         *            Field name
         */
        public FieldNotFoundRuntimeException(final Class<?> targetClass, final String fieldName) {
            super("ECL0070", asArray(targetClass.getName(), fieldName));
            this.targetClass = targetClass;
            this.fieldName = fieldName;
        }
    
        /**
         * Returns the target class.
         *
         * @return Target class
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.9K bytes
    - Viewed (0)
Back to top