xref: /aoo41x/main/idlc/test/exception.idl (revision cdf0e10c)
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