Files
LaLiga-BackEnd/vendor/doctrine/dbal/src/Driver/OCI8/Exception/SequenceDoesNotExist.php
T
2024-05-18 02:28:01 +02:00

21 lines
380 B
PHP

<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Driver\OCI8\Exception;
use Doctrine\DBAL\Driver\AbstractException;
/**
* @internal
*
* @psalm-immutable
*/
final class SequenceDoesNotExist extends AbstractException
{
public static function new(): self
{
return new self('lastInsertId failed: Query was executed but no result was returned.');
}
}