Final Class Yiisoft\Hydrator\Exception\NonExistClassException
| Inheritance | Yiisoft\Hydrator\Exception\NonExistClassException » Yiisoft\Hydrator\Exception\NonInstantiableException » LogicException |
|---|
Thrown when a class is attempted to be instantiated but does not exist.
Public Methods
| Method | Description | Defined By |
|---|---|---|
| __construct() | Yiisoft\Hydrator\Exception\NonExistClassException |
Method Details
| public mixed __construct ( string $class ) | ||
| $class | string | |
public function __construct(string $class)
{
parent::__construct(
sprintf(
'Class "%s" not exist.',
$class
),
);
}
Signup or Login in order to comment.