File "CommitFailedRollbackOnly.php"
Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/doctrine/dbal/CommitFailedRollbackOnly.php
File size: 366 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Exception;
use Doctrine\DBAL\ConnectionException;
/** @psalm-immutable */
final class CommitFailedRollbackOnly extends ConnectionException
{
public static function new(): self
{
return new self('Transaction commit failed because the transaction has been marked for rollback only.');
}
}