From 3afd325c31e525feec0db9d95406f59ee8d21e75 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 23 Oct 2008 20:48:58 +0000 Subject: [PATCH] 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 --- src/as/com/threerings/parlor/data/ParlorCodes.as | 3 +++ src/java/com/threerings/parlor/data/ParlorCodes.java | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/as/com/threerings/parlor/data/ParlorCodes.as b/src/as/com/threerings/parlor/data/ParlorCodes.as index 118dda49..03044f82 100644 --- a/src/as/com/threerings/parlor/data/ParlorCodes.as +++ b/src/as/com/threerings/parlor/data/ParlorCodes.as @@ -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"; diff --git a/src/java/com/threerings/parlor/data/ParlorCodes.java b/src/java/com/threerings/parlor/data/ParlorCodes.java index 2d7b114b..477abe2f 100644 --- a/src/java/com/threerings/parlor/data/ParlorCodes.java +++ b/src/java/com/threerings/parlor/data/ParlorCodes.java @@ -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";