summaryrefslogtreecommitdiff
path: root/modules/CIAO/ciao/CCM_CCMException.idl
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/ciao/CCM_CCMException.idl')
-rw-r--r--modules/CIAO/ciao/CCM_CCMException.idl41
1 files changed, 41 insertions, 0 deletions
diff --git a/modules/CIAO/ciao/CCM_CCMException.idl b/modules/CIAO/ciao/CCM_CCMException.idl
new file mode 100644
index 00000000000..850de8f6d48
--- /dev/null
+++ b/modules/CIAO/ciao/CCM_CCMException.idl
@@ -0,0 +1,41 @@
+// $Id$
+
+/**
+ * @@ Compile this file with:
+ *
+ * tao_idl -Gv -I ../.. -I ../../orbsvcs/orbsvcs \
+ * -Wb,export_macro=CIAO_Export \
+ * -Wb,export_include=CIAO_export.h \
+ * -Wb,pre_include="ace/pre.h" \
+ * -Wb,post_include="ace/post.h" \
+ * CCM_Container.idl
+ */
+
+#if !defined (CCM_CCMEXCEPTION_IDL)
+#define CCM_CCMEXCEPTION_IDL
+
+module Components
+{
+ typeprefix Components "omg.org";
+
+ enum CCMExceptionReason
+ {
+ SYSTEM_ERROR,
+ CREATE_ERROR,
+ REMOVE_ERROR,
+ DUPLICATE_KEY,
+ FIND_ERROR,
+ OBJECT_NOT_FOUND,
+ NO_SUCH_ENTITY
+ /* extended by QoS4CCM
+ QOS_ERROR,
+ REGISTRATION_ERROR,
+ SERVICE_INSTALLATION_ERROR */
+ };
+
+ exception CCMException
+ {
+ CCMExceptionReason reason;
+ };
+};
+#endif /* CCM_CCMEXCEPTION_IDL */