# give/4.17.0/src/Framework/ListTable/Exceptions/ReferenceColumnNotFoundException.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.17.0. 21 lines.

- Page: https://pluginprobe.com/plugins/give/4.17.0/code/src/Framework/ListTable/Exceptions/ReferenceColumnNotFoundException.php
- Raw: https://pluginprobe.com/plugins/give/4.17.0/raw/src/Framework/ListTable/Exceptions/ReferenceColumnNotFoundException.php
- Modified: 2026-09-23T17:56:52+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.17.0/code/src/Framework/ListTable/Exceptions/ReferenceColumnNotFoundException.php#L10-L20`.

```php
<?php

namespace Give\Framework\ListTable\Exceptions;

use Give\Framework\Exceptions\Primitives\Exception;

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

```
