Whatdyaknow, INVALID_TABLE_POSITION was actually being used for something

sensible before it was coopted to report totally unrelated errors.


git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@765 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Michael Bayne
2008-10-23 20:48:58 +00:00
parent 244b9b22b8
commit 3afd325c31
2 changed files with 6 additions and 0 deletions
@@ -48,6 +48,9 @@ public class ParlorCodes extends InvocationCodes
* doesn't exist. */
public static const NO_SUCH_TABLE :String = "m.no_such_table";
/** An error code returned by the table services. */
public static const INVALID_TABLE_POSITION :String = "m.invalid_table_position";
/** An error code returned by the table services. */
public static const MUST_BE_CREATOR :String = "m.must_be_creator";
@@ -47,6 +47,9 @@ public interface ParlorCodes extends InvocationCodes
/** An error code returned by the table services. */
public static final String NO_SUCH_TABLE = "m.no_such_table";
/** An error code returned by the table services. */
public static final String INVALID_TABLE_POSITION = "m.invalid_table_position";
/** An error code returned by the table services. */
public static final String MUST_BE_CREATOR = "m.must_be_creator";