| 1 | <?php |
||
| 22 | class HttpException extends CommonException |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var integer Used as default HTTP code for exceptions |
||
| 26 | */ |
||
| 27 | protected $code = StatusCode::INTERNAL_SERVER_ERROR; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Return HTTP Status Message |
||
| 31 | * |
||
| 32 | * @return string |
||
| 33 | */ |
||
| 34 | public function getStatus() : string |
||
| 38 | } |
||
| 39 |