- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for NoSuchConstructorRuntimeException (0.31 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/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 {Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 25.6K bytes - Click Count (0)