summaryrefslogtreecommitdiff
path: root/modules/CIAO/ciao/CIAO_FailureReasons.idl
blob: c5bae8c9cbc820d65e7cd703a61981b043d26b0d (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
/**
 * @file CIAO_FailureReasons.idl
 * @author William R. Otte <wotte@dre.vanderbilt.edu>
 * $Id$
 * Failure code definitions for CIAO.  The VID is based on that of TAO, but
 * our failure reasons start at that base since this is a different namespace.
 */

#ifndef CIAO_FAILUREREASONS_IDL
#define CIAO_FAILUREREASONS_IDL

#include <ccm/CCM_Exceptions.idl>

module CIAO
{
  const Components::FailureReason VID = 0x54410000;
  const Components::FailureReason MAX_FAILURE = VID | 0xfff;

  // Container failures
  const Components::FailureReason SERVER_SPAWN_FAILURE           = VID | 0x001;
  const Components::FailureReason CALLBACK_TIMEOUT_EXCEEDED      = VID | 0x002;
};

#endif