summaryrefslogtreecommitdiff
path: root/modules/CIAO/ccm/CCM_Exceptions.idl
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/ccm/CCM_Exceptions.idl')
-rw-r--r--modules/CIAO/ccm/CCM_Exceptions.idl26
1 files changed, 26 insertions, 0 deletions
diff --git a/modules/CIAO/ccm/CCM_Exceptions.idl b/modules/CIAO/ccm/CCM_Exceptions.idl
new file mode 100644
index 00000000000..7e1f7067f2b
--- /dev/null
+++ b/modules/CIAO/ccm/CCM_Exceptions.idl
@@ -0,0 +1,26 @@
+// $Id$
+/// Compliant with OMG 06-04-01 Section 6.7.6
+
+#if !defined (CCM_EXCEPTIONS_IDL)
+#define CCM_EXCEPTIONS_IDL
+
+module Components
+{
+ typeprefix Components "omg.org";
+
+ typedef unsigned long FailureReason;
+
+ exception CreateFailure {
+ FailureReason reason;
+ };
+ exception FinderFailure
+ {
+ FailureReason reason;
+ };
+ exception RemoveFailure
+ {
+ FailureReason reason;
+ };
+};
+
+#endif