Inheritance: extends Exception
コード例 #1
0
ファイル: Exceptions.php プロジェクト: samsonasik/patchwork
 function __construct($callback)
 {
     $this->message = "The file that defines %s() was included earlier than Patchwork. " . "This is likely a result of an improper setup; see readme for details.";
     parent::__construct($callback);
 }
コード例 #2
0
ファイル: Exceptions.php プロジェクト: rarescosma/patchwork
 function __construct($callback)
 {
     $this->message = "The file that defines %s was included earlier than Patchwork. " . "This is likely a result of an improper setup; see " . "http://antecedent.github.io/patchwork/docs/setup.html for details.";
     parent::__construct($callback);
 }