for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Vox\Webservice\Exception;
use Exception;
class RollbackException extends Exception
{
public function __construct(\Throwable $previous)
parent::__construct("transaction could not be rolled back: {$previous->getMessage()}", 0, $previous);
}