1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

Catch JNA native lib errors

This commit is contained in:
Reinhard Pointner 2016-11-26 17:53:45 +08:00
parent cf49146905
commit 4e606bd1d7

View File

@ -92,7 +92,7 @@ class RenameAction extends AbstractAction {
}
} catch (CancellationException e) {
debug.finest(e::toString);
} catch (Exception e) {
} catch (Throwable e) {
log.log(Level.SEVERE, String.format("%s: %s", getRootCause(e).getClass().getSimpleName(), getRootCauseMessage(e)), e);
}