summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/ReplyStatus.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/src/IceInternal/ReplyStatus.java')
-rw-r--r--java/src/IceInternal/ReplyStatus.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/java/src/IceInternal/ReplyStatus.java b/java/src/IceInternal/ReplyStatus.java
new file mode 100644
index 00000000000..a8598eccb06
--- /dev/null
+++ b/java/src/IceInternal/ReplyStatus.java
@@ -0,0 +1,22 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+package IceInternal;
+
+interface ReplyStatus
+{
+ static final byte replyOK = 0;
+ static final byte replyUserException = 1;
+ static final byte replyObjectNotExist = 2;
+ static final byte replyFacetNotExist = 3;
+ static final byte replyOperationNotExist = 4;
+ static final byte replyUnknownLocalException = 5;
+ static final byte replyUnknownUserException = 6;
+ static final byte replyUnknownException = 7;
+}