give
/
vendor
/
vendor-prefixed
/
stellarwp
/
validation
/
src
/
Exceptions
/
ValidationException.php
ValidationException.php
20 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @license GPL-2.0-or-later |
| 4 | * |
| 5 | * Modified by impress-org on 27-April-2023 using Strauss. |
| 6 | * @see https://github.com/BrianHenryIE/strauss |
| 7 | */ |
| 8 | |
| 9 | declare(strict_types=1); |
| 10 | |
| 11 | namespace Give\Vendors\StellarWP\Validation\Exceptions; |
| 12 | |
| 13 | use Exception; |
| 14 | use Give\Vendors\StellarWP\Validation\Exceptions\Contracts\ValidationExceptionInterface; |
| 15 | |
| 16 | class ValidationException extends Exception implements ValidationExceptionInterface |
| 17 | { |
| 18 | |
| 19 | } |
| 20 |