-
-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature #455 [PHP 8.3] Add
SQLite3Exception
class (Ayesh)
This PR was merged into the 1.x branch. Discussion ---------- [PHP 8.3] Add `SQLite3Exception` class Adds the new SQLite3Exception exception class added in PHP 8.3. - [RFC](https://wiki.php.net/rfc/sqlite3_exceptions) - [`SQLite3Exception`](https://www.php.net/manual/en/class.sqlite3exception.php) (TODO) - [PHP 8.3: SQLite3: New `\SQLite3Exception`, deprecations, and changes](https://php.watch/versions/8.3/SQLite3-exception-improvements#SQLite3Exception) Commits ------- 4910279 [PHP 8.3] Add `SQLite3Exception` class
- Loading branch information
Showing
3 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Symfony package. | ||
* | ||
* (c) Fabien Potencier <fabien@symfony.com> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
if (\PHP_VERSION_ID < 80300) { | ||
class SQLite3Exception extends Exception | ||
{ | ||
} | ||
} |