Page MenuHomeWickedGov Phorge

ConnectionException.php
No OneTemporary

Size
917 B
Referenced Files
None
Subscribers
None

ConnectionException.php

<?php
namespace Doctrine\DBAL;
/** @psalm-immutable */
class ConnectionException extends Exception
{
/** @return ConnectionException */
public static function commitFailedRollbackOnly()
{
return new self('Transaction commit failed because the transaction has been marked for rollback only.');
}
/** @return ConnectionException */
public static function noActiveTransaction()
{
return new self('There is no active transaction.');
}
/** @return ConnectionException */
public static function savepointsNotSupported()
{
return new self('Savepoints are not supported by this driver.');
}
/** @return ConnectionException */
public static function mayNotAlterNestedTransactionWithSavepointsInTransaction()
{
return new self('May not alter the nested transaction with savepoints behavior while a transaction is open.');
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, Aug 18, 20:15 (2 w, 3 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
ab/34/e8ca71ee25dd06fc74fe56fb7272
Default Alt Text
ConnectionException.php (917 B)

Event Timeline