0 follower

Final Class Yiisoft\Translator\UnwritableCategorySourceException

InheritanceYiisoft\Translator\UnwritableCategorySourceException » Exception

Method Details

Hide inherited methods

__construct() public method

public mixed __construct ( string $categoryName, integer $code 0, Throwable|null $previous null )
$categoryName string
$code integer
$previous Throwable|null

                public function __construct(string $categoryName, int $code = 0, ?Throwable $previous = null)
{
    parent::__construct(
        sprintf('The category source "%s" does not support writing.', $categoryName),
        $code,
        $previous
    );
}