xref: /AOO41X/main/idlc/test/exception.idl (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1module idlc
2{
3module test
4{
5
6exception BaseException
7{
8	string	Description;
9};
10
11exception RuntimeException : BaseException
12{
13	long	Id;
14	type	Context;
15};
16
17
18};
19};
20
21