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