// // Copyright (c) ZeroC, Inc. All rights reserved. // #ifndef ICE_REPLY_STATUS_H #define ICE_REPLY_STATUS_H #include namespace IceInternal { static const Ice::Byte replyOK = 0; static const Ice::Byte replyUserException = 1; static const Ice::Byte replyObjectNotExist = 2; static const Ice::Byte replyFacetNotExist = 3; static const Ice::Byte replyOperationNotExist = 4; static const Ice::Byte replyUnknownLocalException = 5; static const Ice::Byte replyUnknownUserException = 6; static const Ice::Byte replyUnknownException = 7; } #endif