/
home
/
obinna
/
html
/
amply
/
vendor
/
doctrine
/
dbal
/
lib
/
Doctrine
/
DBAL
/
Driver
/
IBMDB2
/
Exception
/
Upload File
HOME
<?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()); } }