PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
doctrine
/
dbal
/
src
/
Driver
/
IBMDB2
/
Exception
<?php declare(strict_types=1); namespace Doctrine\DBAL\Driver\IBMDB2\Exception; use Doctrine\DBAL\Driver\AbstractException; /** * @internal * * @psalm-immutable */ final class CannotCreateTemporaryFile extends AbstractException { /** * @psalm-param array{message: string}|null $error */ public static function new(?array $error): self { $message = 'Could not create temporary file'; if ($error !== null) { $message .= ': ' . $error['message']; } return new self($message); } }
[+]
..
[-] StatementError.php
[edit]
[-] ConnectionFailed.php
[edit]
[-] ConnectionError.php
[edit]
[-] CannotCopyStreamToStream.php
[edit]
[-] CannotWriteToTemporaryFile.php
[edit]
[-] PrepareFailed.php
[edit]
[-] CannotCreateTemporaryFile.php
[edit]