diff options
Diffstat (limited to 'idlc/test/exception.idl')
-rw-r--r-- | idlc/test/exception.idl | 20 |
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; +}; + + +}; +}; + |