Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class CustomServerErrorException extends \RuntimeException implements \Throwable |
||
18 | { |
||
19 | private int $statusCode; |
||
20 | |||
21 | public function __construct(string $message = 'Oops! Internal Server Error', int $statusCode = Response::HTTP_INTERNAL_SERVER_ERROR, \Throwable $previous = null, ?int $code = 0) |
||
28 | } |
||
29 | |||
30 | public function getStatusCode(): int |
||
35 |