21 lines
178 B
Text
21 lines
178 B
Text
|
module idlc
|
||
|
{
|
||
|
module test
|
||
|
{
|
||
|
|
||
|
exception BaseException
|
||
|
{
|
||
|
string Description;
|
||
|
};
|
||
|
|
||
|
exception RuntimeException : BaseException
|
||
|
{
|
||
|
long Id;
|
||
|
type Context;
|
||
|
};
|
||
|
|
||
|
|
||
|
};
|
||
|
};
|
||
|
|