File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
spring-core/src/main/java/org/springframework/util Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -648,7 +648,7 @@ private static Method[] getDeclaredMethods(Class<?> clazz) {
648
648
declaredMethodsCache .put (clazz , (result .length == 0 ? NO_METHODS : result ));
649
649
}
650
650
catch (Throwable ex ) {
651
- throw new IllegalStateException ("Failed to introspect Class [" + clazz +
651
+ throw new IllegalStateException ("Failed to introspect Class [" + clazz . getName () +
652
652
"] from ClassLoader [" + clazz .getClassLoader () + "]" , ex );
653
653
}
654
654
}
@@ -747,7 +747,7 @@ private static Field[] getDeclaredFields(Class<?> clazz) {
747
747
declaredFieldsCache .put (clazz , (result .length == 0 ? NO_FIELDS : result ));
748
748
}
749
749
catch (Throwable ex ) {
750
- throw new IllegalStateException ("Failed to introspect Class [" + clazz +
750
+ throw new IllegalStateException ("Failed to introspect Class [" + clazz . getName () +
751
751
"] from ClassLoader [" + clazz .getClassLoader () + "]" , ex );
752
752
}
753
753
}
You can’t perform that action at this time.
0 commit comments