<?php
declare(strict_types=1);
namespace DoctrineDBALDriverOCI8Exception;
use DoctrineDBALDriverAbstractException;
/** @internal */
final class SequenceDoesNotExist extends AbstractException
{
public static function new(): self
{
return new self('lastInsertId failed: Query was executed but no result was returned.');
}
}