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; use function db2_conn_error; use function db2_conn_errormsg; /** * @internal * * @psalm-immutable */ final class ConnectionFailed extends AbstractException { public static function new(): self { return new self(db2_conn_errormsg(), db2_conn_error()); } }
[+]
..
[-] StatementError.php
[edit]
[-] ConnectionFailed.php
[edit]
[-] ConnectionError.php
[edit]
[-] CannotCopyStreamToStream.php
[edit]
[-] CannotWriteToTemporaryFile.php
[edit]
[-] PrepareFailed.php
[edit]
[-] CannotCreateTemporaryFile.php
[edit]