diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-05-17 18:44:28 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-05-17 18:44:28 +0000 |
commit | c44f531305ba295f52a2eb50390cf4e4d0fb78da (patch) | |
tree | 7dceada2d44cfba48ebe228f31771ff63b819d5c /java/src/IceInternal/ReplyStatus.java | |
parent | Removed incorrect comment (diff) | |
download | ice-c44f531305ba295f52a2eb50390cf4e4d0fb78da.tar.bz2 ice-c44f531305ba295f52a2eb50390cf4e4d0fb78da.tar.xz ice-c44f531305ba295f52a2eb50390cf4e4d0fb78da.zip |
Split DispatchStatus into DispatchStatus and ReplyStatus
Diffstat (limited to 'java/src/IceInternal/ReplyStatus.java')
-rw-r--r-- | java/src/IceInternal/ReplyStatus.java | 22 |
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; +} |