Current path: home/webdevt/www/schtroumpf.fr/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/IBMDB2/Exception/
?? Go up: /home/webdevt/www/schtroumpf.fr/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/IBMDB2
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Driver\IBMDB2\Exception;
use Doctrine\DBAL\Driver\IBMDB2\DB2Exception;
/**
* @internal
*
* @psalm-immutable
*/
final class CannotCopyStreamToStream extends DB2Exception
{
/**
* @psalm-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);
}
}