From c8b1404483113bac69289bb42f893fe7af9b38c7 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 27 Mar 2003 00:10:29 +0000 Subject: [PATCH] New error code. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2336 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/whirled/spot/data/SpotCodes.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/java/com/threerings/whirled/spot/data/SpotCodes.java b/src/java/com/threerings/whirled/spot/data/SpotCodes.java index bed5dd514..02a5917cd 100644 --- a/src/java/com/threerings/whirled/spot/data/SpotCodes.java +++ b/src/java/com/threerings/whirled/spot/data/SpotCodes.java @@ -1,5 +1,5 @@ // -// $Id: SpotCodes.java,v 1.4 2003/03/26 22:34:24 mdb Exp $ +// $Id: SpotCodes.java,v 1.5 2003/03/27 00:10:29 mdb Exp $ package com.threerings.whirled.spot.data; @@ -25,6 +25,10 @@ public interface SpotCodes extends ChatCodes, SceneCodes * generated by a failed changeLoc request. */ public static final String INVALID_LOCATION = "m.invalid_location"; + /** An error code indicating that a cluster is not valid. Usually + * generated by a failed joinCluster request. */ + public static final String NO_SUCH_CLUSTER = "m.no_such_cluster"; + /** The chat type code with which we register our cluster auxiliary * chat objects. Chat display implementations should interpret chat * messages with this type accordingly. */