コード例 #1
0
ファイル: Renderer.php プロジェクト: ephigenia/ephframe
 public function __construct($filename)
 {
     return parent::__construct(sprintf('Template file "%s" could not be found.', $filename));
 }
コード例 #2
0
ファイル: ViewNotFoundException.php プロジェクト: saiber/www
 /**
  * @param string $view Path of not found view
  */
 public function __construct($view)
 {
     parent::__construct('Specified view (' . $view . ') was not found');
     $this->viewName = $view;
 }