Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ECL0057 (0.17 sec)

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

         *            原因となった例外
         */
        public NoSuchMethodRuntimeException(final Class<?> targetClass, final String methodName, final Class<?>[] argTypes,
                final Throwable cause) {
            super("ECL0057", asArray(targetClass.getName(), MethodUtil.getSignature(methodName, argTypes)), cause);
            this.targetClass = targetClass;
            this.methodName = methodName;
            this.argTypes = argTypes;
        }
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.3K bytes
    - Viewed (0)
Back to top