SequenceDoesNotExist.php 380 Bytes
Newer Older
1 2 3 4 5 6
<?php

declare(strict_types=1);

namespace Doctrine\DBAL\Driver\OCI8\Exception;

7
use Doctrine\DBAL\Driver\AbstractException;
8 9 10 11 12 13

/**
 * @internal
 *
 * @psalm-immutable
 */
14
final class SequenceDoesNotExist extends AbstractException
15 16 17 18 19 20
{
    public static function new(): self
    {
        return new self('lastInsertId failed: Query was executed but no result was returned.');
    }
}