More code, more code, more kibbles and code.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-05-23 04:03:41 +00:00
parent d865c89bee
commit 6717f8d6e5
14 changed files with 402 additions and 71 deletions
@@ -0,0 +1,17 @@
//
// $Id: CherCodes.java,v 1.1 2001/05/23 04:03:41 mdb Exp $
package com.samskivert.cocktail.cher.util;
/**
* The <code>Codes</code> class serves as a repository for miscellaneous
* string and integer constants used by componenets of the Cher system.
*/
public class Codes
{
/**
* Generally used in responses that can either have the value success,
* or a string code explaining the reason for failure.
*/
public static final String SUCCESS = "success";
}