public function loadView($strView, $arrParams = array())
 {
     try {
         parent::loadView($strView, $arrParams);
     } catch (ViewNotFoundException $e) {
         parent::loadView('error_default', $arrParams);
     }
 }
Example #2
0
 public function __construct()
 {
     $this->objConfig = YarblesLocator::getConfig();
     $this->dblTimeStart = microtime(true);
     parent::__construct();
 }