• File: ReferenceColumnNotFoundException.php
  • Full Path: /home/bravrvjk/itiministry.org/wp-content/plugins/give/src/Framework/ListTable/Exceptions/ReferenceColumnNotFoundException.php
  • Date Modified: 01/19/2023 12:19 AM
  • File size: 409 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Give\Framework\ListTable\Exceptions;

use Give\Framework\Exceptions\Primitives\Exception;

/**
 * @since 2.24.0
 */
class ReferenceColumnNotFoundException extends Exception
{
    public function __construct($id, $code = 0, Exception $previous = null)
    {
        $message = "Reference column with the id \"$id\" not found.";
        parent::__construct($message, $code, $previous);
    }
}