Skip to content

Commit

Permalink
Catch UnsatisfiedLinkError for loading of RHVOice_core
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Pozhidaev committed Dec 27, 2016
1 parent ce05131 commit e0b9833
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class Channel implements org.luwrain.speech.Channel
try {
System.loadLibrary("RHVoice_core");
}
catch(Exception e)
catch(Exception | UnsatisfiedLinkError e)
{
Log.warning(LOG_COMPONENT, "unable to load RHVoice_core:" + e.getClass().getName() + ":" + e.getMessage());
}
Expand Down

0 comments on commit e0b9833

Please sign in to comment.