Class yii\di\NotInstantiableException
Inheritance | yii\di\NotInstantiableException » yii\base\InvalidConfigException » yii\base\Exception » Exception |
---|---|
Available since version | 2.0.9 |
Source Code | https://github.com/yiisoft/yii2/blob/master/framework/di/NotInstantiableException.php |
NotInstantiableException represents an exception caused by incorrect dependency injection container configuration or usage.
Public Methods
Method | Description | Defined By |
---|---|---|
__construct() | yii\di\NotInstantiableException | |
getName() | yii\di\NotInstantiableException |
Method Details
public void __construct ( $class, $message = null, $code = 0, $previous = null ) | ||
$class | ||
$message | ||
$code | ||
$previous |
public function __construct($class, $message = null, $code = 0, $previous = null)
{
if ($message === null) {
$message = "Can not instantiate $class.";
}
parent::__construct($message, $code, $previous);
}
Signup or Login in order to comment.