NativeLibraryLoader: Don't gobble the exception message when loading via System.loadLibrary()

experimental
shadowislord 10 years ago
parent 8e76652110
commit 2cc601edc3
  1. 8
      jme3-desktop/src/main/java/com/jme3/system/NativeLibraryLoader.java

@ -490,11 +490,13 @@ public final class NativeLibraryLoader {
if (isRequired) { if (isRequired) {
throw new UnsatisfiedLinkError( throw new UnsatisfiedLinkError(
"The required native library '" + name + "'" "The required native library '" + name + "'"
+ " was not found in the classpath via '" + pathInJar + "'"); + " was not found in the classpath via '" + pathInJar
+ "'. Error message: " + e.getMessage());
} else { } else {
logger.log(Level.FINE, "The optional native library ''{0}''" + logger.log(Level.FINE, "The optional native library ''{0}''" +
" was not found in the classpath via ''{1}''", " was not found in the classpath via ''{1}''" +
new Object[]{name, pathInJar}); ". Error message: {2}",
new Object[]{name, pathInJar, e.getMessage()});
} }
} }

Loading…
Cancel
Save