HighSpeaker/vendor/cakephp/database/Exception.php
2024-02-05 00:00:23 +08:00

11 lines
280 B
PHP

<?php
declare(strict_types=1);
use function Cake\Core\deprecationWarning;
deprecationWarning(
'Since 4.2.0: Cake\Database\Exception is deprecated. ' .
'Use Cake\Database\Exception\DatabaseException instead.'
);
class_exists('Cake\Database\Exception\DatabaseException');