Adldap\Models\ModelDoesNotExistException::setModel PHP Method

setModel() public method

Sets the model that does not exist.
public setModel ( string $model ) : ModelDoesNotExistException
$model string
return ModelDoesNotExistException
    public function setModel($model)
    {
        $this->model = $model;
        $this->message = "Model [{$model}] does not exist.";
        return $this;
    }
ModelDoesNotExistException