/
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_stmt_error; use function db2_stmt_errormsg; /** * @internal * * @psalm-immutable */ final class StatementError extends AbstractException { /** * @param resource $statement */ public static function new($statement): self { return new self(db2_stmt_errormsg($statement), db2_stmt_error($statement)); } }