Report the error directly when we fail to create a jar file.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2664 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// $Id: ResourceBundle.java,v 1.16 2003/05/27 07:52:45 mdb Exp $
|
// $Id: ResourceBundle.java,v 1.17 2003/06/18 16:54:17 mdb Exp $
|
||||||
|
|
||||||
package com.threerings.resource;
|
package com.threerings.resource;
|
||||||
|
|
||||||
@@ -294,9 +294,11 @@ public class ResourceBundle
|
|||||||
return false;
|
return false;
|
||||||
|
|
||||||
} catch (IOException ioe) {
|
} catch (IOException ioe) {
|
||||||
|
Log.warning("Failure creating jar file '" + _source + "'.");
|
||||||
|
Log.logStackTrace(ioe);
|
||||||
throw new NestableIOException(
|
throw new NestableIOException(
|
||||||
"Failed to resolve resource bundle jar file " +
|
"Failed to resolve resource bundle jar file '" +
|
||||||
"[file=" + _source + "]", ioe);
|
_source + "'", ioe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user