PATH:
home
/
lab2454c
/
healthvalidate.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_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)); } }
[+]
..
[-] StatementError.php
[edit]
[-] ConnectionFailed.php
[edit]
[-] ConnectionError.php
[edit]
[-] CannotCopyStreamToStream.php
[edit]
[-] CannotWriteToTemporaryFile.php
[edit]
[-] PrepareFailed.php
[edit]
[-] CannotCreateTemporaryFile.php
[edit]