Some widening.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4818 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2007-08-22 01:12:02 +00:00
parent 52be62ddbf
commit 9a150ebcda
2 changed files with 14 additions and 19 deletions
@@ -22,11 +22,10 @@
package com.threerings.presents.dobj;
/**
* An object access exception is delivered when an object is not
* accessible to a requesting subscriber for some reason or other. For
* some access exceptions, special derived classes exist to communicate
* the error. For others, a message string explaining the access failure
* is provided.
* An object access exception is delivered when an object is not accessible to a requesting
* subscriber for some reason or other. For some access exceptions, special derived classes exist
* to communicate the error. For others, a message string explaining the access failure is
* provided.
*/
public class ObjectAccessException extends Exception
{
@@ -40,8 +39,8 @@ public class ObjectAccessException extends Exception
}
/**
* Constructs a object access exception with the specified error
* message and the chained causing event.
* Constructs a object access exception with the specified error message and the chained
* causing event.
*/
public ObjectAccessException (String message, Exception cause)
{
@@ -50,8 +49,7 @@ public class ObjectAccessException extends Exception
}
/**
* Constructs a object access exception with the specified chained
* causing event.
* Constructs a object access exception with the specified chained causing event.
*/
public ObjectAccessException (Exception cause)
{