Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ECL0070 (1.15 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)
  3. src/main/resources/CLMessages.properties

    ECL0066=NamingException occurred, because {0}
    ECL0067=NoSuchAlgorithmException occurred, because {0}
    ECL0068=InvalidKeyException occurred, because {0}
    ECL0069=NoSuchPaddingException occurred, because {0}
    ECL0070=Field({1}) of class({0}) not found
    ECL0071=SQLException(Message=[{0}], ErrorCode={1}, SQLState={2}) occurred
    ECL0072=SQLException(SQL=[{0}], Message=[{1}], ErrorCode={2}, SQLState={3}) occurred
    ECL0091=Illegal URL({0})
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Mar 07 01:58:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top