public function __construct($filename) { return parent::__construct(sprintf('Template file "%s" could not be found.', $filename)); }
/** * @param string $view Path of not found view */ public function __construct($view) { parent::__construct('Specified view (' . $view . ') was not found'); $this->viewName = $view; }