public function __call($name,
$value = null
) { if (substr($name, -6
) === 'Action'
) { throw new Enlight_Controller_Exception( 'Action "' .
$this->controller_name . '_' .
$name . '" not found failure for request url ' .
$this->request->
getScheme() . '://' .
$this->request->
getHttpHost() .
$this->request->
getRequestUri(),
Enlight_Controller_Exception::ActionNotFound
);
} return parent::
__call($name,
$value);
} /**
* @throws Exception
* @throws Enlight_Exception
* @throws Enlight_Event_Exception
*/