This commit is contained in:
Marek
2026-03-24 00:04:55 +01:00
commit c5229e48ed
4225 changed files with 511461 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Driver\Exception;
use Doctrine\DBAL\Driver\AbstractException;
use Throwable;
/** @internal */
final class IdentityColumnsNotSupported extends AbstractException
{
public static function new(?Throwable $previous = null): self
{
return new self('The driver does not support identity columns.', null, 0, $previous);
}
}

View File

@@ -0,0 +1,17 @@
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Driver\Exception;
use Doctrine\DBAL\Driver\AbstractException;
use Throwable;
/** @internal */
final class NoIdentityValue extends AbstractException
{
public static function new(?Throwable $previous = null): self
{
return new self('No identity value was generated by the last statement.', null, 0, $previous);
}
}