ValidationException.php
14 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Give\VendorOverrides\Validation\Exceptions; |
| 6 | |
| 7 | use Give\Framework\Exceptions\Primitives\Exception; |
| 8 | use Give\Vendors\StellarWP\Validation\Exceptions\Contracts\ValidationExceptionInterface; |
| 9 | |
| 10 | class ValidationException extends Exception implements ValidationExceptionInterface |
| 11 | { |
| 12 | |
| 13 | } |
| 14 |