Final Class Yiisoft\Hydrator\Exception\NonExistClassException
| Inheritance | Yiisoft\ |
|---|
Thrown when a class is attempted to be instantiated but does not exist.
Public Methods
| Method | Description | Defined By |
|---|---|---|
| __construct() | Yiisoft\ |
Method Details
| public mixed __construct ( string $class ) | ||
| $class | string | |
public function __construct(string $class)
{
parent::__construct(
sprintf(
'Class "%s" not exist.',
$class,
),
);
}
User Contributed Notes
Leave a comment
Join the conversation to share a note.