summaryrefslogtreecommitdiff
path: root/idlc/test/exception.idl
diff options
context:
space:
mode:
authorJuergen Schmidt <jsc@openoffice.org>2001-03-15 11:25:06 +0000
committerJuergen Schmidt <jsc@openoffice.org>2001-03-15 11:25:06 +0000
commitea4bd2c669909d300834aa0465365b3072b6254e (patch)
tree5e728bfd43834159b3564783d77396d3ad2eaf0f /idlc/test/exception.idl
parent4a26896241acd02b7e239d3f149c0566cc8fd88b (diff)
new
Diffstat (limited to 'idlc/test/exception.idl')
-rw-r--r--idlc/test/exception.idl20
1 files changed, 20 insertions, 0 deletions
diff --git a/idlc/test/exception.idl b/idlc/test/exception.idl
new file mode 100644
index 000000000000..b53d1dbe74fd
--- /dev/null
+++ b/idlc/test/exception.idl
@@ -0,0 +1,20 @@
+module idlc
+{
+module test
+{
+
+exception BaseException
+{
+ string Description;
+};
+
+exception RuntimeException : BaseException
+{
+ long Id;
+ type Context;
+};
+
+
+};
+};
+