# give/4.16.8.1/src/Framework/ListTable/Exceptions/ReferenceColumnNotFoundException.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/ListTable/Exceptions/ReferenceColumnNotFoundException.php
- Raw: https://pluginprobe.com/plugins/give/4.16.8.1/raw/src/Framework/ListTable/Exceptions/ReferenceColumnNotFoundException.php
- Modified: 2023-01-18T19:19:38+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/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
{
    public function __construct($id, $code = 0, Exception $previous = null)
    {
        $message = "Reference column with the id \"$id\" not found.";
        parent::__construct($message, $code, $previous);
    }
}

```
