# give/4.16.9/src/DonationForms/Exceptions/DonationFormForbidden.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 18 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/DonationForms/Exceptions/DonationFormForbidden.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/DonationForms/Exceptions/DonationFormForbidden.php
- Modified: 2024-07-17T20:34:40+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.9/code/src/DonationForms/Exceptions/DonationFormForbidden.php#L10-L20`.

```php
<?php

namespace Give\DonationForms\Exceptions;

use Exception;
use Throwable;

/**
 * @since 3.14.0
 */
class DonationFormForbidden extends Exception
{
    public function __construct($message = 'Forbidden', $code = 403, Throwable $previous = null)
    {
        parent::__construct($message, $code, $previous);
    }
}

```
