CachedQuery("SELECT * FROM containers")) { foreach($result->data as $row) { $sVps = new Vps($row); try { $sVps->UpdateTraffic(); } catch (VpsTrafficRetrieveException $e) { if($sVps->sCurrentStatus == CVM_STATUS_STARTED) { // This is not supposed to fail, as the VPS is running. // Something shady going on. // TODO: Log exception } } } }