コード例 #1
0
 function __construct($viewFile)
 {
     $message = sprintf('View or element  "%s" does not exist', $viewFile);
     parent::__construct($message);
 }
コード例 #2
0
ファイル: View.php プロジェクト: Ephigenia/franklin
 public function __construct($filename)
 {
     return parent::__construct(sprintf('View template file "%s" could not be found', $filename));
 }
コード例 #3
0
 public function __construct($url, $message = 'Not found', $actionerrordisplay = '')
 {
     parent::__construct($url, $message, 'not_found', 404, $actionerrordisplay);
 }