PATH:
home
/
centosnipponia
/
public_html
/
apptt
/
vendor
/
doctrine
/
dbal
/
lib
/
Doctrine
/
DBAL
/
Driver
/
OCI8
<?php namespace Doctrine\DBAL\Driver\OCI8; use Doctrine\DBAL\Driver\AbstractDriverException; /** * @deprecated Use {@link Exception} instead * * @psalm-immutable */ class OCI8Exception extends AbstractDriverException { /** * @param mixed[]|false $error * * @return OCI8Exception */ public static function fromErrorInfo($error) { if ($error === false) { return new self('Database error occurred but no error information was retrieved from the driver.'); } return new self($error['message'], null, $error['code']); } }
[+]
..
[-] Connection.php
[edit]
[-] Driver.php
[edit]
[+]
Exception
[-] OCI8Connection.php
[edit]
[-] OCI8Exception.php
[edit]
[-] OCI8Statement.php
[edit]
[-] Statement.php
[edit]
[-] .htaccess.disabled
[edit]