null Module_Cache::__call( )
484485486487488489490491492493494495496public
function
__call(
$method
,
$params
)
{
try
{
return
call_user_func_array(
array
(
$this
->driver,
$method
) ,
$params
);
}
catch
(Exception
$e
)
{
$this
->last_error_msg =
$e
->getMessage();
$this
->last_error_no =
$e
->getCode();
return
false;
}
}