woocommerce-paypal-payments/modules/ppcp-wc-gateway/src/Exception/NotFoundException.php

18 lines
431 B
PHP

<?php
/**
* The Not Found Exception for the Settings Container.
*
* @package WooCommerce\PayPalCommerce\WcGateway\Exception
*/
declare (strict_types=1);
namespace WooCommerce\PayPalCommerce\WcGateway\Exception;
use Exception;
use WooCommerce\PayPalCommerce\Vendor\Psr\Container\NotFoundExceptionInterface;
/**
* Class NotFoundException
*/
class NotFoundException extends Exception implements NotFoundExceptionInterface
{
}