blob: 264edb9a8d40fc1fbd0cf0a7b09b5fa6d79501aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// **********************************************************************
//
// Copyright (c) 2003-2010 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.
//
// **********************************************************************
#ifndef ICE_REPLY_STATUS_H
#define ICE_REPLY_STATUS_H
#include <Ice/Config.h>
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
|