for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Everlution\AjaxcomBundle\Mutation;
use Everlution\AjaxcomBundle\AjaxcomException;
/**
* Class BlockDoesNotExist.
*
* @author Ivan Barlog <[email protected]>
*/
class BlockDoesNotExist extends AjaxcomException
{
public function __construct(string $id)
parent::__construct("Block '$id' does not exist");
}