Provide a means by which a place manager can check, early in the

initialization process, whether or not it actually wants to be created,
and allow it to abort the whole deal if it doesn't.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1777 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-10-06 00:44:58 +00:00
parent 939e4ce5a9
commit 4da35c0f0b
3 changed files with 35 additions and 7 deletions
@@ -1,5 +1,5 @@
//
// $Id: SceneRegistry.java,v 1.16 2002/08/14 19:07:57 mdb Exp $
// $Id: SceneRegistry.java,v 1.17 2002/10/06 00:44:58 mdb Exp $
package com.threerings.whirled.server;
@@ -209,9 +209,9 @@ public class SceneRegistry
// will call back to the scene registry and let us know that
// we can turn the penders loose
} catch (InstantiationException ie) {
} catch (Exception e) {
// so close, but no cigar
processFailedResolution(model.sceneId, ie);
processFailedResolution(model.sceneId, e);
}
}