# give/4.16.8.1/src/Framework/FieldsAPI/Exceptions/ReferenceNodeNotFoundException.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.8.1. 18 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.8.1/code/src/Framework/FieldsAPI/Exceptions/ReferenceNodeNotFoundException.php
- Raw: https://pluginprobe.com/plugins/give/4.16.8.1/raw/src/Framework/FieldsAPI/Exceptions/ReferenceNodeNotFoundException.php
- Modified: 2021-11-23T23:55:18+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.8.1/code/src/Framework/FieldsAPI/Exceptions/ReferenceNodeNotFoundException.php#L10-L20`.

```php
<?php

namespace Give\Framework\FieldsAPI\Exceptions;

use Give\Framework\Exceptions\Primitives\Exception;

/**
 * @since 2.10.2
 */
class ReferenceNodeNotFoundException extends Exception
{
    public function __construct($name, $code = 0, Exception $previous = null)
    {
        $message = "Reference node with the name \"$name\" not found - cannot insert new node.";
        parent::__construct($message, $code, $previous);
    }
}

```
