summaryrefslogtreecommitdiff
path: root/idlc/test/exception.idl
blob: b53d1dbe74fde80393da1bfe4091e024166fad18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module idlc
{
module test
{

exception BaseException
{
    string  Description;
};

exception RuntimeException : BaseException
{
    long    Id;
    type    Context;
};


};
};