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