Fucking JarFile throws a SecurityException if there's a signing error

which is *not* an IOException. Thanks guys.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2827 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-10-22 18:50:27 +00:00
parent 969008a6b8
commit 3fadb2b1ea
@@ -1,5 +1,5 @@
//
// $Id: ResourceBundle.java,v 1.23 2003/08/20 03:52:36 mdb Exp $
// $Id: ResourceBundle.java,v 1.24 2003/10/22 18:50:27 mdb Exp $
package com.threerings.resource;
@@ -148,8 +148,8 @@ public class ResourceBundle
new FileOutputStream(efile));
jin = _jarSource.getInputStream(entry);
StreamUtils.pipe(jin, fout);
} catch (IOException ioe) {
Log.warning("Failure unpacking " + efile + ": " + ioe);
} catch (Exception e) {
Log.warning("Failure unpacking " + efile + ": " + e);
failure = true;
} finally {
StreamUtil.close(jin);