| IDL Complex Type | |
| exception | The CORBA exception indicates that the method raises an exception extended from CORBA.UserException. Every exception occured in remote methods must be mapped to the corresponding CORBA exception or CORBA.UserException. |
// CORBA IDL |
exception MyException
{
string why;
}; |
e.g. MyException MyExceptionHelper |
{ Delphi }
-- TBD
|