woocommerce-paypal-payments/modules.local/ppcp-wc-gateway/src/Exception/class-notfoundexception.php
2020-08-28 08:13:45 +03:00

21 lines
392 B
PHP

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