Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
vendor
/
doctrine
/
dbal
/
src
/
Driver
/
API
/
MySQL
:
SavepointsNotSupported.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare(strict_types=1); namespace Doctrine\DBAL\Exception; use Doctrine\DBAL\ConnectionException; /** @psalm-immutable */ final class SavepointsNotSupported extends ConnectionException { public static function new(): self { return new self('Savepoints are not supported by this driver.'); } }