UnsatisfiedLinkError
I have implemented native method in Win32 A.DLL. This DLL uses another B.DLL. If the B.DLL is missing then
I get "java.lang.UnsatisfiedLinkError: C:\dlls\A.dll: Can't find dependent libraries". This is right. Problem is that our system is very complex and I don't know which dependent library is missing (it is the B.DLL in this case). Could I get more info from JVM?

