Let's catch Throwable so that we correctly shut ourselves down if something

unexceptional causes startup failure, like NoClassDefFoundError.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6335 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2010-12-03 18:21:21 +00:00
parent cef632494a
commit f0860e3c57
@@ -129,8 +129,8 @@ public class PresentsServer
// down)
server.run();
} catch (Exception e) {
log.warning("Unable to initialize server.", e);
} catch (Throwable t) {
log.warning("Unable to initialize server.", t);
System.exit(-1);
}
}