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