for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Thruster\Component\Actions\Exception;
/**
* Class ActionExecutorNotFoundException
*
* @package Thruster\Component\Actions\Exception
* @author Aurimas Niekis <[email protected]>
*/
class ActionExecutorNotFoundException extends \Exception
{
* @param string $name
public function __construct($name)
$message = sprintf(
'Action executor "%s" not found',
$name
);
parent::__construct($message);
}