summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/ReplyStatus.h
blob: 8eeac4cb71731e0258479facdc7938fbca6075fe (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
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

#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