Final Class Yiisoft\Translator\UnwritableCategorySourceException
| Inheritance | Yiisoft\Translator\UnwritableCategorySourceException » Exception |
|---|
Public Methods
| Method | Description | Defined By |
|---|---|---|
| __construct() | Yiisoft\Translator\UnwritableCategorySourceException |
Method Details
| 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
);
}
Signup or Login in order to comment.