diff --git a/src/java/com/threerings/presents/client/InvocationCodes.java b/src/java/com/threerings/presents/client/InvocationCodes.java index 13f67e7de..3e040c364 100644 --- a/src/java/com/threerings/presents/client/InvocationCodes.java +++ b/src/java/com/threerings/presents/client/InvocationCodes.java @@ -1,5 +1,5 @@ // -// $Id: InvocationCodes.java,v 1.2 2001/10/11 04:07:52 mdb Exp $ +// $Id: InvocationCodes.java,v 1.3 2001/10/19 18:03:06 mdb Exp $ package com.threerings.presents.client; @@ -17,4 +17,10 @@ public interface InvocationCodes * or a string code explaining the reason for failure. */ public static final String SUCCESS = "success"; + + /** An error code returned to clients when a service cannot be + * performed because of some internal server error that we couldn't + * explain in any meaningful way (things like null pointer + * exceptions). */ + public static final String INTERNAL_ERROR = "m.internal_error"; }