Class Yiisoft\Yii\Cycle\Exception\ConfigException
| Inheritance | Yiisoft\ |
|---|
Public Methods
| Method | Description | Defined By |
|---|---|---|
| __construct() | Yiisoft\ |
Method Details
| public mixed __construct ( string[] $section, string $message, integer $code = 0, ?\ | ||
| $section | string[] |
Config path |
| $message | string | |
| $code | integer | |
| $previous | ?\ |
|
public function __construct(array $section, string $message, int $code = 0, ?Throwable $previous = null)
{
$path = implode(' -> ', $section);
parent::__construct(sprintf('(%s): %s', $path, $message), $code, $previous);
}
User Contributed Notes
Leave a comment
Join the conversation to share a note.