This is specific of CrE-ME,
There code UtilsJavaSE:
static final boolean canCallNotLoadedNativeMethod = !ibmJ9midp;
Probably we need to add CrE-ME detection to code.
The problem probably in this code BlueCoveImpl:
try {
if (UtilsJavaSE.canCallNotLoadedNativeMethod) {
return stack.isNativeCodeLoaded();
}
} catch (Error e) {}
The CrE-ME do not allow us to catch UnsatisfiedLinkError
--
Vlad