• File: ReferenceBlockNotFoundException.php
  • Full Path: /home/bravrvjk/itiministry.org/wp-content/plugins/give/src/Framework/Blocks/Exceptions/ReferenceBlockNotFoundException.php
  • Date Modified: 10/16/2023 9:55 PM
  • File size: 437 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php


namespace Give\Framework\Blocks\Exceptions;

use Give\Framework\Exceptions\Primitives\Exception;

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