예제 #1
0
파일: NotFound.php 프로젝트: rootzig/SNEP
 public function __construct($message = "Not Found")
 {
     parent::__construct($message, 404, "Not Found");
 }
예제 #2
0
 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");
 }