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 InvalidTaskType extends \Exception
{
public function __construct()
parent::__construct('Passed tasks must be string or Junty\TaskInterface instance.');
}