Made ObjectAccessException a nestable exception; modified

objectAvailable() error dispatching to not incorrectly report a failure to
create an object.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@918 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-02-02 09:42:36 +00:00
parent c6d2529e78
commit 9d9872f606
4 changed files with 47 additions and 22 deletions
@@ -1,5 +1,5 @@
//
// $Id: DObject.java,v 1.31 2001/10/12 20:12:48 mdb Exp $
// $Id: DObject.java,v 1.32 2002/02/02 09:42:36 mdb Exp $
package com.threerings.presents.dobj;
@@ -378,8 +378,8 @@ public class DObject
} catch (Exception e) {
String errmsg = "Attribute setting failure [name=" + name +
", value=" + value + ", error=" + e + "].";
throw new ObjectAccessException(errmsg);
", value=" + value + "].";
throw new ObjectAccessException(errmsg, e);
}
}
@@ -396,9 +396,8 @@ public class DObject
return getClass().getField(name).get(this);
} catch (Exception e) {
String errmsg = "Attribute getting failure [name=" + name +
", error=" + e + "].";
throw new ObjectAccessException(errmsg);
String errmsg = "Attribute getting failure [name=" + name + "].";
throw new ObjectAccessException(errmsg, e);
}
}