8019799: api/java_util/jar/Pack200 test failed with compactX profiles

Reviewed-by: dholmes
This commit is contained in:
Kumar Srinivasan 2013-07-11 11:14:06 -07:00
parent ec6cb721e1
commit 20c1572bcd

View File

@ -134,7 +134,7 @@ public class UnpackerImpl extends TLGlobals implements Pack200.Unpacker {
} else {
try {
(new NativeUnpack(this)).run(in0, out);
} catch (UnsatisfiedLinkError ule) {
} catch (UnsatisfiedLinkError | NoClassDefFoundError ex) {
// failover to java implementation
(new DoUnpack()).run(in0, out);
}