#1362: Tighter catch on errors in native lib compilation.

This commit is contained in:
md_5 2015-02-08 08:08:20 +11:00
parent f4ae511af0
commit eeaa44e1e7

View File

@ -70,6 +70,9 @@ public final class NativeCode<T>
} catch ( IOException ex )
{
// Can't write to tmp?
} catch ( UnsatisfiedLinkError ex )
{
System.out.println( "Could not load native library: " + ex.getMessage() );
}
}
}