Fix pure-java fallback

This commit is contained in:
Taro L. Saito 2020-11-28 09:46:07 -08:00
parent 585c6a135e
commit a1f4fa3b10

View File

@ -168,7 +168,7 @@ public class SnappyLoader
setSnappyApi(new SnappyNative());
}
}
catch(Exception e) {
catch(Throwable e) {
// Fall-back to pure-java Snappy implementation
setSnappyApi(new PureJavaSnappy());
}