Copyright (c) Qusay H. Mahmoud
25
IDL Structure (Exceptions)
l
IDL supports user-defined exceptions
l
exception InsufficientFunds {
l
long currentBalance;
l
};
l
void withdraw(in unsigned long amount)
l
raises (InsufficientFunds);
l
};