PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
doctrine
/
dbal
/
src
/
Driver
/
SQLite3
<?php namespace Doctrine\DBAL\Driver\SQLite3; use Doctrine\DBAL\Driver\AbstractException; /** * @internal * * @psalm-immutable */ final class Exception extends AbstractException { public static function new(\Exception $exception): self { return new self($exception->getMessage(), null, (int) $exception->getCode(), $exception); } }
[-] Driver.php
[edit]
[+]
..
[-] Connection.php
[edit]
[-] Exception.php
[edit]
[-] Statement.php
[edit]
[-] Result.php
[edit]