- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for NoSuchConstructorRuntimeException (0.16 seconds)
-
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) {
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat Jul 05 00:11:05 GMT 2025 - 2.1K bytes - Click Count (0) -
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 { /** */Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 6.2K bytes - Click Count (0)