|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00026 require_once 'Zend/Service/WindowsAzure/RetryPolicy/RetryPolicyAbstract.php'; 00027 00035 class Zend_Service_WindowsAzure_RetryPolicy_NoRetry extends Zend_Service_WindowsAzure_RetryPolicy_RetryPolicyAbstract 00036 { 00044 public function execute($function, $parameters = array()) 00045 { 00046 $returnValue = null; 00047 00048 try 00049 { 00050 $returnValue = call_user_func_array($function, $parameters); 00051 return $returnValue; 00052 } 00053 catch (Exception $ex) 00054 { 00055 throw $ex; 00056 } 00057 } 00058 }