How have we not previously been screwed by the fact that an Error (like

NoSuchMethodError) sticks a fork in the event dispatcher thread?


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3712 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2005-09-27 04:38:33 +00:00
parent 277af53513
commit 7fb4eafbf8
@@ -282,10 +282,9 @@ public class PresentsDObjectMgr
} catch (Exception e) {
Log.warning("Execution unit failed [unit=" + unit + "].");
Log.logStackTrace(e);
} catch (OutOfMemoryError oome) {
handleFatalError(unit, oome);
} catch (StackOverflowError soe) {
handleFatalError(unit, soe);
} catch (Error e) {
handleFatalError(unit, e);
}
// compute the elapsed time in microseconds
@@ -425,11 +424,8 @@ public class PresentsDObjectMgr
", target=" + target + "].");
Log.logStackTrace(e);
} catch (OutOfMemoryError oome) {
handleFatalError(event, oome);
} catch (StackOverflowError soe) {
handleFatalError(event, soe);
} catch (Error e) {
handleFatalError(event, e);
}
// track the number of events dispatched