Файл: vendor/doctrine/dbal/src/Driver/IBMDB2/Exception/CannotCopyStreamToStream.php
Строк: 22
<?php
declare(strict_types=1);
namespace DoctrineDBALDriverIBMDB2Exception;
use DoctrineDBALDriverAbstractException;
/** @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);
}
}