- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 18 for targetClass (0.04 sec)
-
src/main/java/org/codelibs/core/exception/ConstructorNotFoundRuntimeException.java
super("ECL0048", asArray(targetClass.getName(), getSignature(methodArgs))); this.targetClass = targetClass; this.methodArgs = methodArgs; paramTypes = null; } /** * Creates a {@link ConstructorNotFoundRuntimeException}. * * @param targetClass * Target class
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/MethodNotFoundRuntimeException.java
* Array of parameter types */ public MethodNotFoundRuntimeException(final Class<?> targetClass, final String methodName, final Class<?>[] methodArgClasses) { super("ECL0049", asArray(targetClass.getName(), MethodUtil.getSignature(methodName, methodArgClasses))); this.targetClass = targetClass; this.methodName = methodName; this.methodArgClasses = methodArgClasses; } /**Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
* * @param targetClass * the target class */ private void setupFieldDescsByClass(final Class<?> targetClass) { addFieldDescs(targetClass); for (final Class<?> intf : targetClass.getInterfaces()) { setupFieldDescsByInterface(intf); } final Class<?> superClass = targetClass.getSuperclass();Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 25.8K bytes - Viewed (1) -
src/main/java/org/codelibs/core/exception/IllegalAccessRuntimeException.java
/** * The target class. */ private final Class<?> targetClass; /** * Creates a {@link IllegalAccessRuntimeException}. * * @param targetClass * Target class * @param cause * The cause of the exception */ public IllegalAccessRuntimeException(final Class<?> targetClass, final IllegalAccessException cause) {Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/FieldNotFoundRuntimeException.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/InvocationTargetRuntimeException.java
/** * The target class. */ private final Class<?> targetClass; /** * Creates a {@link InvocationTargetRuntimeException}. * * @param targetClass * Target class * @param cause * The cause of the exception */ public InvocationTargetRuntimeException(final Class<?> targetClass, final InvocationTargetException cause) {Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/InstantiationRuntimeException.java
/** * The target class. */ private final Class<?> targetClass; /** * Creates a {@link InstantiationRuntimeException}. * * @param targetClass * Target class * @param cause * The cause of the exception */ public InstantiationRuntimeException(final Class<?> targetClass, final InstantiationException cause) {Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/FieldNotStaticRuntimeException.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/MethodNotStaticRuntimeException.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/NoSuchFieldRuntimeException.java
*/ public NoSuchFieldRuntimeException(final Class<?> targetClass, final String fieldName, final Throwable cause) { super("ECL0070", asArray(targetClass.getName(), fieldName), cause); this.targetClass = targetClass; this.fieldName = fieldName; } /** * Returns the target class. * * @return Target class */ public Class<?> getTargetClass() {Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0)