Newer
Older
framework / system / CLI / Exceptions / CLIException.php
@Jim Parry Jim Parry on 1 Dec 2018 349 bytes Release 4.0.0-alpha.3
<?php namespace CodeIgniter\CLI\Exceptions;

class CLIException extends \RuntimeException
{
	/**
	 * @param string $type
	 * @param string $color
	 *
	 * @return \CodeIgniter\CLI\Exceptions\CLIException
	 */
	public static function forInvalidColor(string $type, string $color)
	{
		return new static(lang('CLI.invalidColor', [$type, $color]));
	}
}