Subiendo proyecto completo sin restricciones de git ignore
This commit is contained in:
20
vendor/doctrine/dbal/src/Driver/OCI8/Exception/SequenceDoesNotExist.php
vendored
Normal file
20
vendor/doctrine/dbal/src/Driver/OCI8/Exception/SequenceDoesNotExist.php
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
<?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.');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user