| 1: | <?php |
| 2: | |
| 3: | namespace OpenSearch\Exception; |
| 4: | |
| 5: | class NotAcceptableHttpException extends HttpException |
| 6: | { |
| 7: | public function __construct(string $message = '', array $headers = [], int $code = 0, ?\Throwable $previous = null) |
| 8: | { |
| 9: | parent::__construct(406, $message, $headers, $code, $previous); |
| 10: | } |
| 11: | } |
| 12: |