コード例 #1
0
ファイル: NotFound.php プロジェクト: rootzig/SNEP
 public function __construct($message = "Not Found")
 {
     parent::__construct($message, 404, "Not Found");
 }
コード例 #2
0
ファイル: MethodNotAllowed.php プロジェクト: rootzig/SNEP
 public function __construct($message = "Method Not Allowed")
 {
     parent::__construct($message, 405, "Method Not Allowed");
 }
コード例 #3
0
ファイル: BadRequest.php プロジェクト: rootzig/SNEP
 public function __construct($message = "Bad Request")
 {
     parent::__construct($message, 400, "Bad Request");
 }