Dr. Dobb's Journal December 1997
(a)
account.Ref accountRef = null;
try{
accountRef = account._bind( ":account", "pc48" );
}
catch (IE.Iona.Orbix2.CORBA.SystemException se) {
System.out.println("Unexpected exception:" );
System.out.println(se.toString());
return;
}
(b)
try{
accountRef.makeWithdrawal( amount );
}
catch (IE.Iona.Orbix2.CORBA.SystemException se) {
// Handle exception here
return;
}