DomainException.php
8 months ago
ISO3166Exception.php
8 months ago
OutOfBoundsException.php
8 months ago
DomainException.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | /* |
| 6 | * (c) Rob Bast <rob.bast@gmail.com> |
| 7 | * |
| 8 | * For the full copyright and license information, please view |
| 9 | * the LICENSE file that was distributed with this source code. |
| 10 | */ |
| 11 | |
| 12 | namespace Automattic\WooCommerce\Vendor\League\ISO3166\Exception; |
| 13 | |
| 14 | final class DomainException extends \DomainException implements ISO3166Exception |
| 15 | { |
| 16 | } |
| 17 |