DonationFormForbidden.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\DonationForms\Exceptions; |
| 4 | |
| 5 | use Exception; |
| 6 | use Throwable; |
| 7 | |
| 8 | /** |
| 9 | * @since 3.14.0 |
| 10 | */ |
| 11 | class DonationFormForbidden extends Exception |
| 12 | { |
| 13 | public function __construct($message = 'Forbidden', $code = 403, Throwable $previous = null) |
| 14 | { |
| 15 | parent::__construct($message, $code, $previous); |
| 16 | } |
| 17 | } |
| 18 |