• File: SequenceDoesNotExist.php
  • Full Path: /home/masbinta/public_html/core/vendor/doctrine/dbal/src/Driver/OCI8/Exception/SequenceDoesNotExist.php
  • File size: 380 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?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.');
    }
}