diff options
| author | J08nY | 2018-07-18 15:48:37 +0200 |
|---|---|---|
| committer | J08nY | 2018-07-18 15:48:37 +0200 |
| commit | ed484c16c74f8d4f1e7c211f9583d2e675abae79 (patch) | |
| tree | 2f6d66b31cfd39de0af0158142d32112db645ac1 /src/cz/crcs/ectester/standalone/libs/NativeECLibrary.java | |
| parent | 4ec020d8099df27cd7845dfebf183f635bfb006b (diff) | |
| download | ECTester-ed484c16c74f8d4f1e7c211f9583d2e675abae79.tar.gz ECTester-ed484c16c74f8d4f1e7c211f9583d2e675abae79.tar.zst ECTester-ed484c16c74f8d4f1e7c211f9583d2e675abae79.zip | |
Diffstat (limited to 'src/cz/crcs/ectester/standalone/libs/NativeECLibrary.java')
| -rw-r--r-- | src/cz/crcs/ectester/standalone/libs/NativeECLibrary.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cz/crcs/ectester/standalone/libs/NativeECLibrary.java b/src/cz/crcs/ectester/standalone/libs/NativeECLibrary.java index 0a420a1..03a088b 100644 --- a/src/cz/crcs/ectester/standalone/libs/NativeECLibrary.java +++ b/src/cz/crcs/ectester/standalone/libs/NativeECLibrary.java @@ -110,7 +110,8 @@ public abstract class NativeECLibrary extends ProviderECLibrary { provider = createProvider(); return super.initialize(); - } catch (IOException | UnsatisfiedLinkError ignored) { + } catch (IOException | UnsatisfiedLinkError ex) { + System.err.println(ex.getMessage()); } return false; } |
