コード例 #1
0
ファイル: InstanceNotFound.php プロジェクト: nora-worker/core
 public function __construct($name, $container)
 {
     parent::__construct("{$name} is not found");
 }
コード例 #2
0
ファイル: UndefinedParam.php プロジェクト: nora-worker/core
 public function __construct($name)
 {
     parent::__construct(sprintf("Param %s is Not Defined", $name));
 }
コード例 #3
0
ファイル: ModuleNotFound.php プロジェクト: nora-worker/core
 public function __construct($name)
 {
     parent::__construct(sprintf("Module %s is Not Found", $name));
 }