mirror of
https://github.com/angryip/ipscan.git
synced 2025-10-26 11:18:17 +00:00
show UnsatisfyingLinkError message to the user - it is more precise
This commit is contained in:
parent
e515790818
commit
f8d0010f08
@ -94,7 +94,7 @@ public class Main {
|
||||
display.dispose();
|
||||
}
|
||||
catch (UnsatisfiedLinkError e) {
|
||||
JOptionPane.showMessageDialog(null, "Failed to load native code. Probably you are using a binary built for wrong OS or CPU. If 64-bit binary doesn't work for you, try 32-bit version, or vice versa.");
|
||||
JOptionPane.showMessageDialog(null, "Failed to load native code: " + e.getMessage() + "\nProbably you are using a binary built for wrong OS or CPU. If 64-bit binary doesn't work for you, try 32-bit version, or vice versa.");
|
||||
e.printStackTrace();
|
||||
new GoogleAnalytics().report(e);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user