We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a1aa08 commit 339fdefCopy full SHA for 339fdef
jme3-core/src/main/java/com/jme3/asset/ImplHandler.java
@@ -124,10 +124,7 @@ protected T initialValue() {
124
} catch (InstantiationException | IllegalAccessException
125
| IllegalArgumentException | InvocationTargetException
126
| NoSuchMethodException | SecurityException ex) {
127
- logger.log(Level.SEVERE, "Cannot create locator of type {0}, does"
128
- + " the class have an empty and publicly accessible"
129
- + " constructor?", type.getName());
130
- logger.throwing(type.getName(), "<init>", ex);
+ logger.log(Level.SEVERE, "An exception occurred while instantiating asset locator: " + type.getName(), ex);
131
}
132
return null;
133
0 commit comments