<?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); } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
Connection.php | File | 2.38 KB | 0644 |
|
Driver.php | File | 1.27 KB | 0644 |
|
Exception.php | File | 359 B | 0644 |
|
Result.php | File | 1.87 KB | 0644 |
|
Statement.php | File | 3.7 KB | 0644 |
|