summaryrefslogtreecommitdiff
path: root/modules/CIAO/ciao/Deployment_Core.idl
blob: fbaa5ea18c6633f21bde88895ebe0009141880b9 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// $Id$

#if !defined (DEPLOYMENT_CORE_IDL)
#define DEPLOYMENT_CORE_IDL

#include "ciao/CCM_Component.idl"
#include "ciao/Deployment_TargetData.idl"
#include "ciao/Deployment_Data.idl"
#include "ciao/Deployment_Application.idl"

// *************** Packaging and Deployment ***************
module Deployment
{
  // Typeprefix Components "omg.org";
  // OMG threw these things away, didn't it.

  /// CIAO specific
  exception UnknownImplId
  {
    string name;
    string reason;
  };

  /// CIAO specific
  exception InstallationFailure
  {
    string name;
    string reason;
  };

  /// CIAO specific
  exception ImplEntryPointNotFound
  {
    string name;
    string reason;
  };

  /**
   * The StopError exception is raised if a problem occurred while terminating
   * an application, either during the terminate operation of the
   * ApplicationManager or during the destroyManager operation of the
   * ExecutionManager.
   */
  exception StopError {
    string name;
    string reason;
  };
};
#endif /* DEPLOYMENT_CORE_IDL */