blob: 949903e0af436d0b526d62f899e16cfd59bc918e (
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
|
// $Id$
#ifndef DEPLOYMENT_IDL
#define DEPLOYMENT_IDL
module Deployment {
exception InvalidProperty {
string name;
string reason;
};
exception InvalidNodeExecParameter {
string name;
string reason;
};
exception InvalidComponentExecParameter {
string name;
string reason;
};
exception NoSuchName {
};
exception LastConfiguration {
};
exception InvalidReference {
};
//@! in DOCGroup added 1 additional exception and one structure
};
#endif /* DEPLOYMENT_IDL */
|