• File: ReferenceNodeNotFoundException.php
  • Full Path: /home/bravrvjk/itiministry.org/wp-content/plugins/give/src/Framework/FieldsAPI/Exceptions/ReferenceNodeNotFoundException.php
  • Date Modified: 11/24/2021 4:55 AM
  • File size: 436 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?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);
    }
}