Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NoSuchConstructorRuntimeException (1.26 sec)

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

        private final Class<?>[] argTypes;
    
        /**
         * Creates a {@link NoSuchConstructorRuntimeException}.
         *
         * @param targetClass
         *            Target class
         * @param argTypes
         *            Array of parameter types
         * @param cause
         *            The cause of the exception
         */
        public NoSuchConstructorRuntimeException(final Class<?> targetClass, final Class<?>[] argTypes, final Throwable cause) {
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/lang/ClassUtilTest.java

    import static org.hamcrest.CoreMatchers.nullValue;
    import static org.junit.Assert.assertThat;
    
    import org.codelibs.core.exception.EmptyArgumentException;
    import org.codelibs.core.exception.NoSuchConstructorRuntimeException;
    import org.codelibs.core.exception.NoSuchFieldRuntimeException;
    import org.junit.Test;
    
    /**
     * @author higa
     */
    public class ClassUtilTest {
    
        /** */
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/lang/ClassUtil.java

         * @throws NoSuchConstructorRuntimeException
         *             If a matching constructor is not found
         * @see Class#getConstructor(Class...)
         */
        public static <T> Constructor<T> getConstructor(final Class<T> clazz, final Class<?>... argTypes)
                throws NoSuchConstructorRuntimeException {
            assertArgumentNotNull("clazz", clazz);
    
            try {
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 25.6K bytes
    - Viewed (0)
Back to top