- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for InstantiationRuntimeException (2.64 sec)
-
src/main/java/org/codelibs/core/exception/InstantiationRuntimeException.java
*/ public InstantiationRuntimeException(final Class<?> targetClass, final InstantiationException cause) { super("ECL0041", asArray(targetClass.getName(), cause), cause); this.targetClass = targetClass; } @Override public synchronized InstantiationRuntimeException initCause(final Throwable cause) { return (InstantiationRuntimeException) super.initCause(cause); } /**Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ConstructorUtil.java
throws InstantiationRuntimeException, IllegalAccessRuntimeException { assertArgumentNotNull("constructor", constructor); try { return constructor.newInstance(args); } catch (final InstantiationException e) { throw new InstantiationRuntimeException(constructor.getDeclaringClass(), e); } catch (final IllegalAccessException e) {Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.1K bytes - Viewed (0)