office-gobmx/idlc/test/exception.idl

21 lines
178 B
Text
Raw Normal View History

2001-03-15 05:25:06 -06:00
module idlc
{
module test
{
exception BaseException
{
string Description;
};
exception RuntimeException : BaseException
{
long Id;
type Context;
};
};
};