Просмотр файла vendor/doctrine/dbal/src/Driver/IBMDB2/Exception/CannotCopyStreamToStream.php

Размер файла: 526B
<?php

declare(strict_types=1);

namespace Doctrine\DBAL\Driver\IBMDB2\Exception;

use Doctrine\DBAL\Driver\AbstractException;

/** @internal */
final class CannotCopyStreamToStream extends AbstractException
{
    /** @param array{message: string}|null $error */
    public static function new(?array $error): self
    {
        $message = 'Could not copy source stream to temporary file';

        if ($error !== null) {
            $message .= ': ' . $error['message'];
        }

        return new self($message);
    }
}