コード例 #1
0
ファイル: PathNotFound.class.php プロジェクト: theratg/miao
 public function __construct($path)
 {
     $msg = sprintf('Path "%s" not found', $path);
     parent::__construct($msg);
 }
コード例 #2
0
ファイル: InvalidPath.class.php プロジェクト: theratg/miao
 public function __construct($path, $reason)
 {
     $msg = sprintf('Invalid path "%s": %s', $path, $reason);
     parent::__construct($msg);
 }