summaryrefslogtreecommitdiff
path: root/TAO/tests/AMH_Exceptions/Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/AMH_Exceptions/Test.idl')
-rw-r--r--TAO/tests/AMH_Exceptions/Test.idl28
1 files changed, 0 insertions, 28 deletions
diff --git a/TAO/tests/AMH_Exceptions/Test.idl b/TAO/tests/AMH_Exceptions/Test.idl
deleted file mode 100644
index c3ffd609ca4..00000000000
--- a/TAO/tests/AMH_Exceptions/Test.idl
+++ /dev/null
@@ -1,28 +0,0 @@
-//
-// $Id$
-//
-
-/// A simple module to avoid namespace pollution
-module Test
-{
-
- exception InvalidTimestamp {};
- exception ServerOverload {};
-
- /// Use a timestamp to measure the roundtrip delay
- typedef unsigned long long Timestamp;
-
- valuetype Red_Herring
- {
- Timestamp test_method (in Timestamp send_time)
- raises (InvalidTimestamp, ServerOverload);
- };
-
- /// Measure roundtrip Delay
- interface Roundtrip
- {
- Timestamp test_method (in Timestamp send_time)
- raises (InvalidTimestamp, ServerOverload);
- };
-
-};