I have a head-cold (hence the possibly obvious answer to this question) and
a block of code as such:

function checkResponder(e:Event = null):void
{
 try
 {
  bPollingDatabase = true;
  updateListArray();
 }
 catch (err:Error)
 {
  //
 }
}

Now considering there is no code in the 'catch' block, there can be
absolutely no benefit whatsoever to using try-catch-finally in the above
instance.

Is this correct?

Reply via email to