/home/smartonegroup/www/veroserv/vendor/mozex/anthropic-php/src/Exceptions/TransporterException.php
<?php

declare(strict_types=1);

namespace Anthropic\Exceptions;

use Exception;
use Psr\Http\Client\ClientExceptionInterface;

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