1 //
2 // Copyright (c) ZeroC, Inc. All rights reserved.
3 //
4 
5 namespace IceInternal
6 {
7     sealed class ReplyStatus
8     {
9         public const byte replyOK = 0;
10         public const byte replyUserException = 1;
11         public const byte replyObjectNotExist = 2;
12         public const byte replyFacetNotExist = 3;
13         public const byte replyOperationNotExist = 4;
14         public const byte replyUnknownLocalException = 5;
15         public const byte replyUnknownUserException = 6;
16         public const byte replyUnknownException = 7;
17 
ReplyStatus()18         private ReplyStatus()
19         {
20         }
21     }
22 }
23