PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
doctrine
/
dbal
/
src
/
Driver
/
OCI8
/
Exception
<?php declare(strict_types=1); namespace Doctrine\DBAL\Driver\OCI8\Exception; use Doctrine\DBAL\Driver\AbstractException; use function assert; use function oci_error; /** * @internal * * @psalm-immutable */ final class Error extends AbstractException { /** @param resource $resource */ public static function new($resource): self { $error = oci_error($resource); assert($error !== false); return new self($error['message'], null, $error['code']); } }
[-] UnknownParameterIndex.php
[edit]
[+]
..
[-] NonTerminatedStringLiteral.php
[edit]
[-] ConnectionFailed.php
[edit]
[-] SequenceDoesNotExist.php
[edit]
[-] Error.php
[edit]