for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Junty
*
* @author Gabriel Jacinto aka. GabrielJMJ <[email protected]>
* @license MIT License
*/
namespace Junty\Exception;
final class TaskNotRegistred extends \Exception
{
public function __construct($task)
parent::__construct((string) $task . ' is not a registred task.');
}