for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Shippinno\DoctrineToolbelt;
use Exception;
use Throwable;
class RollbackException extends Exception
{
/**
* @param Throwable|null $previous
*/
public function __construct(Throwable $previous = null)
parent::__construct('Transaction rolled back.', 0, $previous);
}