Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | public function __construct(string $message = 'Oops! Internal Server Error', int $statusCode = Response::HTTP_INTERNAL_SERVER_ERROR, \Throwable $previous = null, ?int $code = 0) |
||
22 | { |
||
23 | $this->statusCode = $statusCode; |
||
24 | |||
25 | $this->message = $message; |
||
26 | |||
27 | parent::__construct($message, $code, $previous); |
||
28 | } |
||
35 |