Example #1
0
 public function __construct($message = "Not Found")
 {
     parent::__construct($message, 404, "Not Found");
 }
Example #2
0
 public function __construct($message = "Method Not Allowed")
 {
     parent::__construct($message, 405, "Method Not Allowed");
 }
Example #3
0
 public function __construct($message = "Bad Request")
 {
     parent::__construct($message, 400, "Bad Request");
 }