/
home
/
obinna
/
html
/
boazapp
/
vendor
/
doctrine
/
dbal
/
src
/
Driver
/
SQLite3
/
Upload File
HOME
<?php namespace Doctrine\DBAL\Driver\SQLite3; use Doctrine\DBAL\Driver\AbstractException; /** @internal */ final class Exception extends AbstractException { public static function new(\Exception $exception): self { return new self($exception->getMessage(), null, (int) $exception->getCode(), $exception); } }