Hello,
I have come accross to this function below and I am wondering wether this is the right way of using the error handling of try/catch.
public function execute()
{
 $lbReturn = false;
 $lsQuery = $this->msLastQuery;
 try
 {
  $lrResource = mysql_query($lsQuery);
  if(!$lrResource)
  {
   throw new MysqlException("Unable to execute query: ".$lsQuery);
  }
  else
  {
   $this->mrQueryResource = $lrResource;
   $lbReturn = true;
  }
 }
 catch(MysqlException $errorMsg)
 {
  ErrorHandler::handleException($errorMsg);
 }
 return $lbReturn;
}