for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace AlecRabbit\ConsoleColour\Exception;
class InvalidStyleException extends \Exception
{
/**
* InvalidStyleException constructor.
* @param string $styleName
*/
public function __construct(string $styleName)
parent::__construct("Style '$styleName' is not allowed.");
}