/home/smartonegroup/www/system/vendor/mozex/anthropic-php/src/Exceptions/UnserializableResponse.php
<?php

declare(strict_types=1);

namespace Anthropic\Exceptions;

use Exception;
use JsonException;

final class UnserializableResponse extends Exception
{
    /**
     * Creates a new Exception instance.
     */
    public function __construct(JsonException $exception)
    {
        parent::__construct($exception->getMessage(), 0, $exception);
    }
}