1 | <?php |
||
10 | class HttpException extends HttpResponseException |
||
11 | { |
||
12 | use JsonApiErrors; |
||
13 | |||
14 | /** |
||
15 | * Create a new HttpException instance. |
||
16 | * |
||
17 | * @param string $message The message for this exception |
||
18 | * @param Response|int|null $response The response object or HTTP status code send to the client |
||
19 | */ |
||
20 | public function __construct($message, $response = null) |
||
30 | } |
||
31 |