summaryrefslogtreecommitdiff
path: root/TAO/tests/DSI_Gateway/test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/DSI_Gateway/test.idl')
-rw-r--r--TAO/tests/DSI_Gateway/test.idl11
1 files changed, 11 insertions, 0 deletions
diff --git a/TAO/tests/DSI_Gateway/test.idl b/TAO/tests/DSI_Gateway/test.idl
index 2c2d6f0f4ec..d35c073b70d 100644
--- a/TAO/tests/DSI_Gateway/test.idl
+++ b/TAO/tests/DSI_Gateway/test.idl
@@ -10,6 +10,13 @@ struct Structure
sequence<long> seq;
};
+exception test_exception
+{
+ short error_code;
+ string error_message;
+ string status_message;
+};
+
interface Simple_Server
{
long test_method (in long x,
@@ -17,5 +24,9 @@ interface Simple_Server
out Structure the_out_structure,
inout string name);
+ void raise_user_exception () raises (test_exception);
+
+ void raise_system_exception ();
+
oneway void shutdown ();
};